You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

7 lines
236 B

CREATE TABLE IF NOT EXISTS `tiki_translations_in_progress` (
`page_id` int(14) NOT NULL,
`language` char(2) NOT NULL,
KEY `page_id` (`page_id`),
KEY `language` (`language`),
UNIQUE (`page_id`, `language`)
) ENGINE=MyISAM;