Core/Misc: Update page text locale to simple system

This commit is contained in:
Vincent-Michael
2015-04-11 05:24:06 +02:00
parent d6311a790b
commit cb2bb1c1ee
9 changed files with 86 additions and 72 deletions

View File

@@ -0,0 +1,12 @@
DROP TABLE IF EXISTS `locales_page_text`;
DROP TABLE IF EXISTS `page_text_locale`;
CREATE TABLE IF NOT EXISTS `page_text_locale` (
`ID` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0',
`locale` VARCHAR(4) NOT NULL,
`Text` TEXT,
`VerifiedBuild` SMALLINT(5) DEFAULT '0'
) ENGINE=MYISAM DEFAULT CHARSET=utf8;
ALTER TABLE `page_text_locale`
ADD PRIMARY KEY (`ID`,`locale`);