mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-12-20 13:21:30 +00:00
Show spam aliases #
This commit is contained in:
25
data/web/rc/SQL/sqlite/2008030300.sql
Normal file
25
data/web/rc/SQL/sqlite/2008030300.sql
Normal file
@@ -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);
|
||||
Reference in New Issue
Block a user