diff options
Diffstat (limited to 'updates/1.00-to-1.xx')
-rw-r--r-- | updates/1.00-to-1.xx | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/updates/1.00-to-1.xx b/updates/1.00-to-1.xx index be556a23e..c579c7946 100644 --- a/updates/1.00-to-1.xx +++ b/updates/1.00-to-1.xx @@ -1,18 +1,16 @@ -# 18/02/2001: permissions / access / group -alter table users drop permissions; -alter table users add access varchar(255) DEFAULT '' NOT NULL; - -# 14/02/2001: locale / internationalisation -alter table users add language varchar(2) DEFAULT '' NOT NULL; - -# 12/02/2001: locale / internationalisation -create table locales ( +# 19/02/2001: internationalization / translation +CREATE TABLE locales ( id int(11) DEFAULT '0' NOT NULL auto_increment, - english TEXT DEFAULT '' NOT NULL, location varchar(128) DEFAULT '' NOT NULL, + string TEXT DEFAULT '' NOT NULL, + en TEXT DEFAULT '' NOT NULL, PRIMARY KEY (id) ); +# 18/02/2001: permissions / access / group +alter table users drop permissions; +alter table users add access varchar(255) DEFAULT '' NOT NULL; + # 07/02/2001: value calculation alter table users add rating decimal(8,4) DEFAULT '0' NOT NULL; |