get_charset_collate(); $tables = " CREATE TABLE {$wpdb->base_prefix}itsec_logs ( id bigint(20) unsigned NOT NULL auto_increment, parent_id bigint(20) unsigned NOT NULL default '0', module varchar(50) NOT NULL default '', code varchar(100) NOT NULL default '', data longtext NOT NULL default '', type varchar(20) NOT NULL default 'notice', timestamp datetime NOT NULL default '0000-00-00 00:00:00', init_timestamp datetime NOT NULL default '0000-00-00 00:00:00', memory_current bigint(20) unsigned NOT NULL default '0', memory_peak bigint(20) unsigned NOT NULL default '0', url varchar(500) NOT NULL default '', blog_id bigint(20) NOT NULL default '0', user_id bigint(20) unsigned NOT NULL default '0', remote_ip varchar(50) NOT NULL default '', PRIMARY KEY (id), KEY module (module), KEY code (code), KEY type (type), KEY timestamp (timestamp), KEY user_id (user_id), KEY blog_id (blog_id) ) $charset_collate; CREATE TABLE {$wpdb->base_prefix}itsec_lockouts ( lockout_id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, lockout_type varchar(20) NOT NULL, lockout_start datetime NOT NULL, lockout_start_gmt datetime NOT NULL, lockout_expire datetime NOT NULL, lockout_expire_gmt datetime NOT NULL, lockout_host varchar(40), lockout_user bigint(20) UNSIGNED, lockout_username varchar(60), lockout_active int(1) NOT NULL DEFAULT 1, PRIMARY KEY (lockout_id), KEY lockout_expire_gmt (lockout_expire_gmt), KEY lockout_host (lockout_host), KEY lockout_user (lockout_user), KEY lockout_username (lockout_username), KEY lockout_active (lockout_active) ) $charset_collate; CREATE TABLE {$wpdb->base_prefix}itsec_temp ( temp_id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, temp_type varchar(20) NOT NULL, temp_date datetime NOT NULL, temp_date_gmt datetime NOT NULL, temp_host varchar(40), temp_user bigint(20) UNSIGNED, temp_username varchar(60), PRIMARY KEY (temp_id), KEY temp_date_gmt (temp_date_gmt), KEY temp_host (temp_host), KEY temp_user (temp_user), KEY temp_username (temp_username) ) $charset_collate; CREATE TABLE {$wpdb->base_prefix}itsec_distributed_storage ( storage_id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, storage_group varchar(40) NOT NULL, storage_key varchar(40) NOT NULL default '', storage_chunk int NOT NULL default 0, storage_data longtext NOT NULL, storage_updated datetime NOT NULL, PRIMARY KEY (storage_id), UNIQUE KEY storage_group__key__chunk (storage_group,storage_key,storage_chunk) ) $charset_collate; CREATE TABLE {$wpdb->base_prefix}itsec_geolocation_cache ( location_id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, location_host varchar(40) NOT NULL, location_lat decimal(10,8) NOT NULL, location_long decimal(11,8) NOT NULL, location_label varchar(255) NOT NULL, location_credit varchar (255) NOT NULL, location_time datetime NOT NULL, PRIMARY KEY (location_id), UNIQUE KEY location_host (location_host), KEY location_time (location_time) ) $charset_collate; CREATE TABLE {$wpdb->base_prefix}itsec_fingerprints ( fingerprint_id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, fingerprint_user bigint(20) UNSIGNED NOT NULL, fingerprint_hash char(32) NOT NULL, fingerprint_created_at datetime NOT NULL, fingerprint_approved_at datetime NOT NULL, fingerprint_data longtext NOT NULL, fingerprint_snapshot longtext NOT NULL, fingerprint_last_seen datetime NOT NULL, fingerprint_uses int NOT NULL default 0, fingerprint_status varchar(20) NOT NULL, fingerprint_uuid char(36) NOT NULL, PRIMARY KEY (fingerprint_id), UNIQUE KEY fingerprint_user__hash (fingerprint_user,fingerprint_hash), UNIQUE KEY fingerprint_uuid (fingerprint_uuid) ) $charset_collate;"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); dbDelta( $tables ); } public static function remove_database_tables() { global $wpdb; $wpdb->query( "DROP TABLE IF EXISTS {$wpdb->base_prefix}itsec_logs;" ); $wpdb->query( "DROP TABLE IF EXISTS {$wpdb->base_prefix}itsec_log;" ); $wpdb->query( "DROP TABLE IF EXISTS {$wpdb->base_prefix}itsec_lockouts;" ); $wpdb->query( "DROP TABLE IF EXISTS {$wpdb->base_prefix}itsec_temp;" ); $wpdb->query( "DROP TABLE IF EXISTS {$wpdb->base_prefix}itsec_distributed_storage;" ); $wpdb->query( "DROP TABLE IF EXISTS {$wpdb->base_prefix}itsec_geolocation_cache;" ); $wpdb->query( "DROP TABLE IF EXISTS {$wpdb->base_prefix}itsec_fingerprints;" ); } }