20_230_601, ); /** * Webhook constructor. * * @access public * @since 2.0.0 * @return void */ public function __construct() { parent::__construct(); } /** * Setup the database schema * * @access protected * @since 2.0.0 * @return void */ protected function set_schema() { // phpcs:disable $this->schema = "id bigint(20) NOT NULL auto_increment, migrated_from_id bigint(20) DEFAULT NULL, name varchar(191) NOT NULL, webhook_url varchar(191) NOT NULL, event varchar(40) NOT NULL, event_count int(10) default 0, active tinyint(4) default 1, hidden tinyint(4) default 0, integration varchar(191) NOT NULL, date_last_failed datetime NOT NULL, date_created datetime NULL, date_modified datetime NULL, PRIMARY KEY (id), KEY event (event)"; // phpcs:enable } /** * Fixes the datetime columns to accept null. * * @since 2.1.2 */ protected function __20230601(): bool { $null_columns = array( 'date_created', 'date_modified', ); foreach ($null_columns as $column) { $query = "ALTER TABLE {$this->table_name} MODIFY COLUMN `{$column}` datetime DEFAULT NULL;"; $result = $this->get_db()->query($query); if ( ! $this->is_success($result)) { return false; } } return true; } }