You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
869 B
MySQL
26 lines
869 B
MySQL
12 years ago
|
-- 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);
|