diff options
author | Kegan Dougal <kegan@matrix.org> | 2015-03-09 17:25:20 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2015-03-09 17:25:20 +0000 |
commit | b98cd03193476dea5f8b47e79d4122bb18449ae2 (patch) | |
tree | 136a44b5068b2870b0b614ec8f3e732297454724 /synapse/storage/schema | |
parent | Use seconds; start gluing in the AS scheduler into the AS handler. (diff) | |
download | synapse-b98cd03193476dea5f8b47e79d4122bb18449ae2.tar.xz |
Use event IDs instead of dumping event content in the txns table.
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r-- | synapse/storage/schema/delta/15/appservice_txns.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/schema/delta/15/appservice_txns.sql b/synapse/storage/schema/delta/15/appservice_txns.sql index ff15aa019e..13bbb2de2e 100644 --- a/synapse/storage/schema/delta/15/appservice_txns.sql +++ b/synapse/storage/schema/delta/15/appservice_txns.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS application_services_state( CREATE TABLE IF NOT EXISTS application_services_txns( as_id INTEGER NOT NULL, txn_id INTEGER NOT NULL, - content TEXT NOT NULL, + event_ids TEXT NOT NULL, UNIQUE(as_id, txn_id) ON CONFLICT ROLLBACK ); |