prefix . static::$table; } /** * Get the charset collate for table creation */ public static function getCharsetCollate(): string { global $wpdb; return $wpdb->get_charset_collate(); } /** * Get the complete table schema as raw SQL CREATE TABLE statement */ abstract public static function getSchema(): string; }