diff options
author | Erik Johnston <erik@matrix.org> | 2014-10-15 16:06:59 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-10-15 16:06:59 +0100 |
commit | e7bc1291a079224315cea5c756061ad711241be1 (patch) | |
tree | b9f303a57a6700df30e1b985a991ca1b7d09f63c /synapse/storage/schema | |
parent | Add missing package storate.state (diff) | |
download | synapse-e7bc1291a079224315cea5c756061ad711241be1.tar.xz |
Begin making auth use event.old_state_events
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r-- | synapse/storage/schema/state.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/schema/state.sql b/synapse/storage/schema/state.sql index b5c345fae7..b44c56b519 100644 --- a/synapse/storage/schema/state.sql +++ b/synapse/storage/schema/state.sql @@ -14,7 +14,7 @@ */ CREATE TABLE IF NOT EXISTS state_groups( - id INTEGER PRIMARY KEY AUTOINCREMENT, + id INTEGER PRIMARY KEY, room_id TEXT NOT NULL, event_id TEXT NOT NULL ); |