diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-01-09 15:57:29 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-01-09 15:57:29 +0100 |
commit | b7e7c8f9501850a38705e0a1f18a8ae6e25f1be1 (patch) | |
tree | 916116f2fea4c80538c992b833959036c905a9ed /SQL/sqlite/2008030300.sql | |
parent | 64e218bd13b948712d79b60f6eae90cf393ec81f (diff) |
Added new database upgrade script, converted DDL scripts to new format
Diffstat (limited to 'SQL/sqlite/2008030300.sql')
-rw-r--r-- | SQL/sqlite/2008030300.sql | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/SQL/sqlite/2008030300.sql b/SQL/sqlite/2008030300.sql new file mode 100644 index 000000000..b5b4890bf --- /dev/null +++ b/SQL/sqlite/2008030300.sql @@ -0,0 +1,25 @@ +-- Updates from version 0.1-stable to 0.1.1 + +DROP TABLE messages; + +CREATE TABLE messages ( + message_id integer NOT NULL PRIMARY KEY, + user_id integer NOT NULL default '0', + del tinyint NOT NULL default '0', + cache_key varchar(128) NOT NULL default '', + created datetime NOT NULL default '0000-00-00 00:00:00', + idx integer NOT NULL default '0', + uid integer NOT NULL default '0', + subject varchar(255) NOT NULL default '', + "from" varchar(255) NOT NULL default '', + "to" varchar(255) NOT NULL default '', + "cc" varchar(255) NOT NULL default '', + "date" datetime NOT NULL default '0000-00-00 00:00:00', + size integer NOT NULL default '0', + headers text NOT NULL, + structure text +); + +CREATE INDEX ix_messages_user_cache_uid ON messages(user_id,cache_key,uid); +CREATE INDEX ix_users_username ON users(username); +CREATE INDEX ix_users_alias ON users(alias); |