diff options
author | Neil Johnson <neil@matrix.org> | 2019-04-08 15:37:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-08 15:37:26 +0100 |
commit | 2d951686a71fd0c8b927d96fa183747ff2982bf9 (patch) | |
tree | 126fa291fe4baed6a91f1a7816d068edb7f4b00d /synapse/storage/schema/delta/13 | |
parent | Merge pull request #5001 from matrix-org/rav/keyring_cleanups (diff) | |
download | synapse-2d951686a71fd0c8b927d96fa183747ff2982bf9.tar.xz |
drop tables listed in #1830 (#4992)
Tables dropped: * application_services, * application_services_regex, * transaction_id_to_pdu, * stats_reporting * current_state_resets * event_content_hashes * event_destinations * event_edge_hashes * event_signatures * feedback * room_hosts * state_forward_extremities
Diffstat (limited to 'synapse/storage/schema/delta/13')
-rw-r--r-- | synapse/storage/schema/delta/13/v13.sql | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/synapse/storage/schema/delta/13/v13.sql b/synapse/storage/schema/delta/13/v13.sql index 5eb93b38b2..f8649e5d99 100644 --- a/synapse/storage/schema/delta/13/v13.sql +++ b/synapse/storage/schema/delta/13/v13.sql @@ -13,19 +13,7 @@ * limitations under the License. */ -CREATE TABLE IF NOT EXISTS application_services( - id INTEGER PRIMARY KEY AUTOINCREMENT, - url TEXT, - token TEXT, - hs_token TEXT, - sender TEXT, - UNIQUE(token) -); - -CREATE TABLE IF NOT EXISTS application_services_regex( - id INTEGER PRIMARY KEY AUTOINCREMENT, - as_id BIGINT UNSIGNED NOT NULL, - namespace INTEGER, /* enum[room_id|room_alias|user_id] */ - regex TEXT, - FOREIGN KEY(as_id) REFERENCES application_services(id) -); +/* We used to create a tables called application_services and + * application_services_regex, but these are no longer used and are removed in + * delta 54. + */ |