upgrade.sql
changeset 209 8a00247d1dee
parent 180 c63c5ee6c6d6
child 210 2b283402e4e4
equal deleted inserted replaced
208:c75ad574b56d 209:8a00247d1dee
     7 ---BEGIN Stable1.0ToUnstable1.1---
     7 ---BEGIN Stable1.0ToUnstable1.1---
     8 -- UPDATE {{TABLE_PREFIX}}groups SET group_id=9998 WHERE group_id=4;
     8 -- UPDATE {{TABLE_PREFIX}}groups SET group_id=9998 WHERE group_id=4;
     9 -- UPDATE {{TABLE_PREFIX}}group_members SET group_id=9998 WHERE group_id=4;
     9 -- UPDATE {{TABLE_PREFIX}}group_members SET group_id=9998 WHERE group_id=4;
    10 -- INSERT INTO {{TABLE_PREFIX}}groups(group_id,group_name,group_type,system_group) VALUES(4, 'Regular members', 3, 1);
    10 -- INSERT INTO {{TABLE_PREFIX}}groups(group_id,group_name,group_type,system_group) VALUES(4, 'Regular members', 3, 1);
    11 CREATE TABLE {{TABLE_PREFIX}}lockout( id int(12) NOT NULL auto_increment, ipaddr varchar(40) NOT NULL, action ENUM('credential', 'level') NOT NULL DEFAULT 'credential', timestamp int(12) NOT NULL DEFAULT 0, PRIMARY KEY ( id ) ) CHARACTER SET `utf8`;
    11 CREATE TABLE {{TABLE_PREFIX}}lockout( id int(12) NOT NULL auto_increment, ipaddr varchar(40) NOT NULL, action ENUM('credential', 'level') NOT NULL DEFAULT 'credential', timestamp int(12) NOT NULL DEFAULT 0, PRIMARY KEY ( id ) ) CHARACTER SET `utf8`;
       
    12 CREATE TABLE {{TABLE_PREFIX}}language( lang_id smallint(5) NOT NULL auto_increment, lang_code varchar(16) NOT NULL, lang_name_default varchar(64) NOT NULL, lang_name_native varchar(64) NOT NULL, PRIMARY KEY ( lang_id ) ) CHARACTER SET `utf8`;
       
    13 CREATE TABLE {{TABLE_PREFIX}}language_strings( string_id bigint(15) NOT NULL auto_increment, lang_id smallint(5) NOT NULL, string_category varchar(32) NOT NULL, string_name varchar(64) NOT NULL, string_content longtext NOT NULL, PRIMARY KEY ( string_id ) );
       
    14 ALTER TABLE {{TABLE_PREFIX}}users ADD COLUMN user_lang smallint(5) NOT NULL;
    12 ---END Stable1.0ToUnstable1.1---
    15 ---END Stable1.0ToUnstable1.1---
    13 ---BEGIN 1.0.2---
    16 ---BEGIN 1.0.2---
    14 ---END 1.0.2---
    17 ---END 1.0.2---
    15 ---BEGIN 1.0.2b1---
    18 ---BEGIN 1.0.2b1---
    16 -- This is really optional, but could reduce confusion if regex page groups get truncated for no apparent reason.
    19 -- This is really optional, but could reduce confusion if regex page groups get truncated for no apparent reason.