prefix : ''; $table_name .= self::TABLE_NAME; }); return $table_name; } /** * Create the logs table for the current site. * * @since 0.9.19 */ public function create() { global $wpdb; // Find the charset the build the table name $charset_collate = $wpdb->get_charset_collate(); $table_name = self::get_table_name(); if ($wpdb->get_var("SHOW TABLES LIKE '$table_name'") != $table_name) { $sql = "CREATE TABLE {$table_name} (id mediumint(9) NOT NULL AUTO_INCREMENT, `level` varchar(255) NOT NULL, `message` text NOT NULL, `context` varchar(255) NOT NULL, `created_at` datetime DEFAULT '0000-00-00 00:00:00' NOT NULL, PRIMARY KEY (id)) {$charset_collate};"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); dbDelta($sql); } } }