mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-09 18:25:25 -04:00
Be postgressive
This commit is contained in:
parent
4669def000
commit
fb95035a65
1 changed files with 3 additions and 4 deletions
|
@ -1,10 +1,9 @@
|
|||
CREATE TABLE user_threepids (
|
||||
id INTEGER PRIMARY KEY NOT NULL,
|
||||
user TEXT NOT NULL,
|
||||
medium TEXT NOT NULL,
|
||||
address TEXT NOT NULL,
|
||||
validated_at INTEGER NOT NULL,
|
||||
added_at INTEGER NOT NULL,
|
||||
CONSTRAINT user_medium_address UNIQUE (user, medium, address) ON CONFLICT REPLACE
|
||||
validated_at BIGINT NOT NULL,
|
||||
added_at BIGINT NOT NULL,
|
||||
CONSTRAINT user_medium_address UNIQUE (user, medium, address)
|
||||
);
|
||||
CREATE INDEX user_threepids_user ON user_threepids(user);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue