Your IP : 216.73.216.54


Current Path : /var/www/html/mediawiki-1.43.1/extensions/PageProperties/mysql/
Upload File :
Current File : /var/www/html/mediawiki-1.43.1/extensions/PageProperties/mysql/pageproperties_pageproperties.sql

CREATE TABLE IF NOT EXISTS /*_*/pageproperties_pageproperties (
  `page_id` int(11) NOT NULL,
  `display_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `language` varchar(64) CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL,
  `meta` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `meta_subpages` tinyint(1) DEFAULT NULL,
  `meta_entire_site` tinyint(1) DEFAULT NULL,
  `updated_at` datetime NOT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

ALTER TABLE /*_*/pageproperties_pageproperties
 ADD UNIQUE KEY IF NOT EXISTS `index_a` (`page_id`);