mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-12-18 12:21:30 +00:00
Show spam aliases #
This commit is contained in:
18
data/web/rc/SQL/postgres/2008030300.sql
Normal file
18
data/web/rc/SQL/postgres/2008030300.sql
Normal file
@@ -0,0 +1,18 @@
|
||||
-- Updates from version 0.1-stable to 0.1.1
|
||||
|
||||
CREATE INDEX cache_user_id_idx ON cache (user_id, cache_key);
|
||||
CREATE INDEX contacts_user_id_idx ON contacts (user_id);
|
||||
CREATE INDEX identities_user_id_idx ON identities (user_id);
|
||||
|
||||
CREATE INDEX users_username_id_idx ON users (username);
|
||||
CREATE INDEX users_alias_id_idx ON users (alias);
|
||||
|
||||
-- added ON DELETE/UPDATE actions
|
||||
ALTER TABLE messages DROP CONSTRAINT messages_user_id_fkey;
|
||||
ALTER TABLE messages ADD FOREIGN KEY (user_id) REFERENCES users(user_id) ON DELETE CASCADE ON UPDATE CASCADE;
|
||||
ALTER TABLE identities DROP CONSTRAINT identities_user_id_fkey;
|
||||
ALTER TABLE identities ADD FOREIGN KEY (user_id) REFERENCES users(user_id) ON DELETE CASCADE ON UPDATE CASCADE;
|
||||
ALTER TABLE contacts DROP CONSTRAINT contacts_user_id_fkey;
|
||||
ALTER TABLE contacts ADD FOREIGN KEY (user_id) REFERENCES users(user_id) ON DELETE CASCADE ON UPDATE CASCADE;
|
||||
ALTER TABLE cache DROP CONSTRAINT cache_user_id_fkey;
|
||||
ALTER TABLE cache ADD FOREIGN KEY (user_id) REFERENCES users(user_id) ON DELETE CASCADE ON UPDATE CASCADE;
|
||||
3
data/web/rc/SQL/postgres/2008060900.sql
Normal file
3
data/web/rc/SQL/postgres/2008060900.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
-- Updates from version 0.2-alpha
|
||||
|
||||
CREATE INDEX messages_created_idx ON messages (created);
|
||||
14
data/web/rc/SQL/postgres/2008092100.sql
Normal file
14
data/web/rc/SQL/postgres/2008092100.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
-- Updates from version 0.2-beta
|
||||
|
||||
ALTER TABLE cache DROP session_id;
|
||||
|
||||
CREATE INDEX session_changed_idx ON session (changed);
|
||||
CREATE INDEX cache_created_idx ON "cache" (created);
|
||||
|
||||
ALTER TABLE users ALTER "language" DROP NOT NULL;
|
||||
ALTER TABLE users ALTER "language" DROP DEFAULT;
|
||||
|
||||
ALTER TABLE identities ALTER del TYPE smallint;
|
||||
ALTER TABLE identities ALTER standard TYPE smallint;
|
||||
ALTER TABLE contacts ALTER del TYPE smallint;
|
||||
ALTER TABLE messages ALTER del TYPE smallint;
|
||||
6
data/web/rc/SQL/postgres/2009090400.sql
Normal file
6
data/web/rc/SQL/postgres/2009090400.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
-- Updates from version 0.3-stable
|
||||
|
||||
TRUNCATE messages;
|
||||
CREATE INDEX messages_index_idx ON messages (user_id, cache_key, idx);
|
||||
DROP INDEX contacts_user_id_idx;
|
||||
CREATE INDEX contacts_user_id_idx ON contacts (user_id, email);
|
||||
32
data/web/rc/SQL/postgres/2009103100.sql
Normal file
32
data/web/rc/SQL/postgres/2009103100.sql
Normal file
@@ -0,0 +1,32 @@
|
||||
-- Updates from version 0.3.1
|
||||
|
||||
DROP INDEX identities_user_id_idx;
|
||||
CREATE INDEX identities_user_id_idx ON identities (user_id, del);
|
||||
|
||||
ALTER TABLE identities ADD changed timestamp with time zone DEFAULT now() NOT NULL;
|
||||
|
||||
CREATE SEQUENCE contactgroups_ids
|
||||
INCREMENT BY 1
|
||||
NO MAXVALUE
|
||||
NO MINVALUE
|
||||
CACHE 1;
|
||||
|
||||
CREATE TABLE contactgroups (
|
||||
contactgroup_id integer DEFAULT nextval('contactgroups_ids'::text) PRIMARY KEY,
|
||||
user_id integer NOT NULL
|
||||
REFERENCES users(user_id) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
changed timestamp with time zone DEFAULT now() NOT NULL,
|
||||
del smallint NOT NULL DEFAULT 0,
|
||||
name varchar(128) NOT NULL DEFAULT ''
|
||||
);
|
||||
|
||||
CREATE INDEX contactgroups_user_id_idx ON contactgroups (user_id, del);
|
||||
|
||||
CREATE TABLE contactgroupmembers (
|
||||
contactgroup_id integer NOT NULL
|
||||
REFERENCES contactgroups(contactgroup_id) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
contact_id integer NOT NULL
|
||||
REFERENCES contacts(contact_id) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
created timestamp with time zone DEFAULT now() NOT NULL,
|
||||
PRIMARY KEY (contactgroup_id, contact_id)
|
||||
);
|
||||
4
data/web/rc/SQL/postgres/2010042300.sql
Normal file
4
data/web/rc/SQL/postgres/2010042300.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
-- Updates from version 0.4-beta
|
||||
|
||||
ALTER TABLE users ALTER last_login DROP NOT NULL;
|
||||
ALTER TABLE users ALTER last_login SET DEFAULT NULL;
|
||||
7
data/web/rc/SQL/postgres/2010100600.sql
Normal file
7
data/web/rc/SQL/postgres/2010100600.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
-- Updates from version 0.4.2
|
||||
|
||||
DROP INDEX users_username_id_idx;
|
||||
ALTER TABLE users ADD CONSTRAINT users_username_key UNIQUE (username, mail_host);
|
||||
ALTER TABLE contacts ALTER email TYPE varchar(255);
|
||||
|
||||
TRUNCATE messages;
|
||||
7
data/web/rc/SQL/postgres/2011011200.sql
Normal file
7
data/web/rc/SQL/postgres/2011011200.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
-- Updates from version 0.5.x
|
||||
|
||||
ALTER TABLE contacts ADD words TEXT NULL;
|
||||
CREATE INDEX contactgroupmembers_contact_id_idx ON contactgroupmembers (contact_id);
|
||||
|
||||
TRUNCATE messages;
|
||||
TRUNCATE cache;
|
||||
64
data/web/rc/SQL/postgres/2011092800.sql
Normal file
64
data/web/rc/SQL/postgres/2011092800.sql
Normal file
@@ -0,0 +1,64 @@
|
||||
-- Updates from version 0.6
|
||||
|
||||
CREATE TABLE dictionary (
|
||||
user_id integer DEFAULT NULL
|
||||
REFERENCES users (user_id) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
"language" varchar(5) NOT NULL,
|
||||
data text NOT NULL,
|
||||
CONSTRAINT dictionary_user_id_language_key UNIQUE (user_id, "language")
|
||||
);
|
||||
|
||||
CREATE SEQUENCE search_ids
|
||||
INCREMENT BY 1
|
||||
NO MAXVALUE
|
||||
NO MINVALUE
|
||||
CACHE 1;
|
||||
|
||||
CREATE TABLE searches (
|
||||
search_id integer DEFAULT nextval('search_ids'::text) PRIMARY KEY,
|
||||
user_id integer NOT NULL
|
||||
REFERENCES users (user_id) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
"type" smallint DEFAULT 0 NOT NULL,
|
||||
name varchar(128) NOT NULL,
|
||||
data text NOT NULL,
|
||||
CONSTRAINT searches_user_id_key UNIQUE (user_id, "type", name)
|
||||
);
|
||||
|
||||
DROP SEQUENCE message_ids;
|
||||
DROP TABLE messages;
|
||||
|
||||
CREATE TABLE cache_index (
|
||||
user_id integer NOT NULL
|
||||
REFERENCES users (user_id) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
mailbox varchar(255) NOT NULL,
|
||||
changed timestamp with time zone DEFAULT now() NOT NULL,
|
||||
valid smallint NOT NULL DEFAULT 0,
|
||||
data text NOT NULL,
|
||||
PRIMARY KEY (user_id, mailbox)
|
||||
);
|
||||
|
||||
CREATE INDEX cache_index_changed_idx ON cache_index (changed);
|
||||
|
||||
CREATE TABLE cache_thread (
|
||||
user_id integer NOT NULL
|
||||
REFERENCES users (user_id) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
mailbox varchar(255) NOT NULL,
|
||||
changed timestamp with time zone DEFAULT now() NOT NULL,
|
||||
data text NOT NULL,
|
||||
PRIMARY KEY (user_id, mailbox)
|
||||
);
|
||||
|
||||
CREATE INDEX cache_thread_changed_idx ON cache_thread (changed);
|
||||
|
||||
CREATE TABLE cache_messages (
|
||||
user_id integer NOT NULL
|
||||
REFERENCES users (user_id) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
mailbox varchar(255) NOT NULL,
|
||||
uid integer NOT NULL,
|
||||
changed timestamp with time zone DEFAULT now() NOT NULL,
|
||||
data text NOT NULL,
|
||||
flags integer NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (user_id, mailbox, uid)
|
||||
);
|
||||
|
||||
CREATE INDEX cache_messages_changed_idx ON cache_messages (changed);
|
||||
3
data/web/rc/SQL/postgres/2011111600.sql
Normal file
3
data/web/rc/SQL/postgres/2011111600.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
-- Updates from version 0.7-beta
|
||||
|
||||
ALTER TABLE "session" ALTER sess_id TYPE varchar(128);
|
||||
5
data/web/rc/SQL/postgres/2011121400.sql
Normal file
5
data/web/rc/SQL/postgres/2011121400.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
-- Updates from version 0.7
|
||||
|
||||
DROP INDEX contacts_user_id_idx;
|
||||
CREATE INDEX contacts_user_id_idx ON contacts USING btree (user_id, del);
|
||||
ALTER TABLE contacts ALTER email TYPE text;
|
||||
7
data/web/rc/SQL/postgres/2012080700.sql
Normal file
7
data/web/rc/SQL/postgres/2012080700.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
-- Updates from version 0.8
|
||||
|
||||
ALTER TABLE cache DROP COLUMN cache_id;
|
||||
DROP SEQUENCE cache_ids;
|
||||
|
||||
ALTER TABLE users DROP COLUMN alias;
|
||||
CREATE INDEX identities_email_idx ON identities (email, del);
|
||||
4
data/web/rc/SQL/postgres/2013011000.sql
Normal file
4
data/web/rc/SQL/postgres/2013011000.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
CREATE TABLE "system" (
|
||||
name varchar(64) NOT NULL PRIMARY KEY,
|
||||
value text
|
||||
);
|
||||
14
data/web/rc/SQL/postgres/2013042700.sql
Normal file
14
data/web/rc/SQL/postgres/2013042700.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
ALTER SEQUENCE user_ids RENAME TO users_seq;
|
||||
ALTER TABLE users ALTER COLUMN user_id SET DEFAULT nextval('users_seq'::text);
|
||||
|
||||
ALTER SEQUENCE identity_ids RENAME TO identities_seq;
|
||||
ALTER TABLE identities ALTER COLUMN identity_id SET DEFAULT nextval('identities_seq'::text);
|
||||
|
||||
ALTER SEQUENCE contact_ids RENAME TO contacts_seq;
|
||||
ALTER TABLE contacts ALTER COLUMN contact_id SET DEFAULT nextval('contacts_seq'::text);
|
||||
|
||||
ALTER SEQUENCE contactgroups_ids RENAME TO contactgroups_seq;
|
||||
ALTER TABLE contactgroups ALTER COLUMN contactgroup_id SET DEFAULT nextval('contactgroups_seq'::text);
|
||||
|
||||
ALTER SEQUENCE search_ids RENAME TO searches_seq;
|
||||
ALTER TABLE searches ALTER COLUMN search_id SET DEFAULT nextval('searches_seq'::text);
|
||||
8
data/web/rc/SQL/postgres/2013052500.sql
Normal file
8
data/web/rc/SQL/postgres/2013052500.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
CREATE TABLE "cache_shared" (
|
||||
cache_key varchar(255) NOT NULL,
|
||||
created timestamp with time zone DEFAULT now() NOT NULL,
|
||||
data text NOT NULL
|
||||
);
|
||||
|
||||
CREATE INDEX cache_shared_cache_key_idx ON "cache_shared" (cache_key);
|
||||
CREATE INDEX cache_shared_created_idx ON "cache_shared" (created);
|
||||
24
data/web/rc/SQL/postgres/2013061000.sql
Normal file
24
data/web/rc/SQL/postgres/2013061000.sql
Normal file
@@ -0,0 +1,24 @@
|
||||
ALTER TABLE "cache" ADD expires timestamp with time zone DEFAULT NULL;
|
||||
ALTER TABLE "cache_shared" ADD expires timestamp with time zone DEFAULT NULL;
|
||||
ALTER TABLE "cache_index" ADD expires timestamp with time zone DEFAULT NULL;
|
||||
ALTER TABLE "cache_thread" ADD expires timestamp with time zone DEFAULT NULL;
|
||||
ALTER TABLE "cache_messages" ADD expires timestamp with time zone DEFAULT NULL;
|
||||
|
||||
-- initialize expires column with created/changed date + 7days
|
||||
UPDATE "cache" SET expires = created + interval '604800 seconds';
|
||||
UPDATE "cache_shared" SET expires = created + interval '604800 seconds';
|
||||
UPDATE "cache_index" SET expires = changed + interval '604800 seconds';
|
||||
UPDATE "cache_thread" SET expires = changed + interval '604800 seconds';
|
||||
UPDATE "cache_messages" SET expires = changed + interval '604800 seconds';
|
||||
|
||||
DROP INDEX cache_created_idx;
|
||||
DROP INDEX cache_shared_created_idx;
|
||||
ALTER TABLE "cache_index" DROP "changed";
|
||||
ALTER TABLE "cache_thread" DROP "changed";
|
||||
ALTER TABLE "cache_messages" DROP "changed";
|
||||
|
||||
CREATE INDEX cache_expires_idx ON "cache" (expires);
|
||||
CREATE INDEX cache_shared_expires_idx ON "cache_shared" (expires);
|
||||
CREATE INDEX cache_index_expires_idx ON "cache_index" (expires);
|
||||
CREATE INDEX cache_thread_expires_idx ON "cache_thread" (expires);
|
||||
CREATE INDEX cache_messages_expires_idx ON "cache_messages" (expires);
|
||||
1
data/web/rc/SQL/postgres/2014042900.sql
Normal file
1
data/web/rc/SQL/postgres/2014042900.sql
Normal file
@@ -0,0 +1 @@
|
||||
-- empty
|
||||
1
data/web/rc/SQL/postgres/2015030800.sql
Normal file
1
data/web/rc/SQL/postgres/2015030800.sql
Normal file
@@ -0,0 +1 @@
|
||||
-- empty
|
||||
2
data/web/rc/SQL/postgres/2015111100.sql
Normal file
2
data/web/rc/SQL/postgres/2015111100.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
ALTER TABLE "users" ADD failed_login timestamp with time zone DEFAULT NULL;
|
||||
ALTER TABLE "users" ADD failed_login_counter integer DEFAULT NULL;
|
||||
1
data/web/rc/SQL/postgres/2016081200.sql
Normal file
1
data/web/rc/SQL/postgres/2016081200.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE "session" DROP COLUMN created;
|
||||
1
data/web/rc/SQL/postgres/2016100900.sql
Normal file
1
data/web/rc/SQL/postgres/2016100900.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE session ALTER COLUMN ip TYPE character varying(41);
|
||||
21
data/web/rc/SQL/postgres/2016112200.sql
Normal file
21
data/web/rc/SQL/postgres/2016112200.sql
Normal file
@@ -0,0 +1,21 @@
|
||||
DROP TABLE "cache";
|
||||
DROP TABLE "cache_shared";
|
||||
|
||||
CREATE TABLE "cache" (
|
||||
user_id integer NOT NULL
|
||||
REFERENCES users (user_id) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
cache_key varchar(128) DEFAULT '' NOT NULL,
|
||||
expires timestamp with time zone DEFAULT NULL,
|
||||
data text NOT NULL,
|
||||
PRIMARY KEY (user_id, cache_key)
|
||||
);
|
||||
|
||||
CREATE INDEX cache_expires_idx ON "cache" (expires);
|
||||
|
||||
CREATE TABLE "cache_shared" (
|
||||
cache_key varchar(255) NOT NULL PRIMARY KEY,
|
||||
expires timestamp with time zone DEFAULT NULL,
|
||||
data text NOT NULL
|
||||
);
|
||||
|
||||
CREATE INDEX cache_shared_expires_idx ON "cache_shared" (expires);
|
||||
Reference in New Issue
Block a user