log_db_option_key ); $rslt = $this->query( "SHOW TABLES LIKE '" . $this->table_name( 'wp_logs' ) . "'" ); if ( empty( static::num_rows( $rslt ) ) ) { $currentVersion = false; } if ( $currentVersion === $this->log_db_version ) { return; } $charset_collate = $wpdb->get_charset_collate(); $tbl = 'CREATE TABLE ' . $this->table_name( 'wp_logs' ) . " ( log_id bigint(20) NOT NULL auto_increment, site_id bigint(20) unsigned NULL, object_id varchar(20) NOT NULL DEFAULT '', item text NOT NULL, user_id int(11) unsigned NOT NULL DEFAULT '0', action varchar(100) NOT NULL, context varchar(100) NOT NULL, connector varchar(100) NOT NULL, state tinyint(1) unsigned NULL, created int(11) NOT NULL DEFAULT 0, duration float(11,4) NOT NULL DEFAULT '0', dismiss tinyint(1) NOT NULL DEFAULT 0, KEY site_id (site_id), KEY user_id (user_id), KEY created (created), KEY duration (duration), KEY context (context), KEY connector (connector), KEY action (action), KEY state (state)"; if ( empty( $currentVersion ) ) { $tbl .= ', PRIMARY KEY (log_id)'; } $tbl .= ') ' . $charset_collate; $sql[] = $tbl; $tbl = 'CREATE TABLE ' . $this->table_name( 'wp_logs_meta' ) . ' ( meta_id bigint(20) unsigned NOT NULL AUTO_INCREMENT, meta_log_id bigint(20) unsigned NOT NULL, meta_key varchar(200) NOT NULL, meta_value mediumtext NOT NULL, KEY meta_log_id (meta_log_id), KEY meta_key (meta_key(191))'; if ( empty( $currentVersion ) ) { $tbl .= ', PRIMARY KEY (`meta_id`) '; } $tbl .= ') ' . $charset_collate; $sql[] = $tbl; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; // NOSONAR - WP compatible. global $wpdb; if ( MainWP_Utility::instance()->is_disabled_functions( 'error_log' ) || ! function_exists( '\error_log' ) ) { error_reporting(0); // phpcs:ignore -- try to disabled the error_log somewhere in WP. } $suppress = $wpdb->suppress_errors(); foreach ( $sql as $query ) { dbDelta( $query ); } $wpdb->suppress_errors( $suppress ); MainWP_Utility::update_option( $this->log_db_option_key, $this->log_db_version ); $this->update_log_db( $currentVersion ); } /** * Method update module log tables. * * @param string $currentVersion Current db version. */ public function update_log_db( $currentVersion ) { if ( version_compare( $currentVersion, '1.0.1.7', '<' ) ) { // NOSONAR - non-ip. $this->wpdb->query( 'ALTER TABLE ' . $this->table_name( 'wp_logs' ) . ' ADD INDEX index_site_object_id (site_id, object_id)' ); //phpcs:ignore -- ok. } } }