diff options
author | David Baker <dave@matrix.org> | 2015-04-29 16:49:44 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2015-04-29 16:50:16 +0100 |
commit | 4669def000fbf16da94055c4f9cbc0d705259ba2 (patch) | |
tree | 85236a8ec9c8712c17f6e2759def1b0adec90315 /synapse | |
parent | txn.execute doesn't return cursors (diff) | |
download | synapse-4669def000fbf16da94055c4f9cbc0d705259ba2.tar.xz |
Oops, forgot the schema delta file
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/schema/delta/17/user_threepids.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/synapse/storage/schema/delta/17/user_threepids.sql b/synapse/storage/schema/delta/17/user_threepids.sql new file mode 100644 index 0000000000..fa16589019 --- /dev/null +++ b/synapse/storage/schema/delta/17/user_threepids.sql @@ -0,0 +1,10 @@ +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 +); +CREATE INDEX user_threepids_user ON user_threepids(user); |