diff options
author | Will Hunt <will@half-shot.uk> | 2020-10-20 10:18:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 10:18:55 +0100 |
commit | 626b8f0846816c56cf8b3f0f3cf6a5ce12dde67b (patch) | |
tree | 12a0d154edf3a2f0ebb6cd4241c59509ec49d867 /synapse/storage | |
parent | Fix 'LruCache' object has no attribute '_on_resize' (#8591) (diff) | |
download | synapse-626b8f0846816c56cf8b3f0f3cf6a5ce12dde67b.tar.xz |
Move schema file for as_device_stream (#8590)
* Move schema file * Add a . * Add matching changelog entry * Fix sqlite
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/databases/main/schema/delta/58/21as_device_stream.sql (renamed from synapse/storage/databases/main/schema/delta/59/19as_device_stream.sql) | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/synapse/storage/databases/main/schema/delta/59/19as_device_stream.sql b/synapse/storage/databases/main/schema/delta/58/21as_device_stream.sql index 20f5a95a24..7b84a207fd 100644 --- a/synapse/storage/databases/main/schema/delta/59/19as_device_stream.sql +++ b/synapse/storage/databases/main/schema/delta/58/21as_device_stream.sql @@ -13,6 +13,5 @@ * limitations under the License. */ -ALTER TABLE application_services_state - ADD COLUMN read_receipt_stream_id INT, - ADD COLUMN presence_stream_id INT; \ No newline at end of file +ALTER TABLE application_services_state ADD COLUMN read_receipt_stream_id INT; +ALTER TABLE application_services_state ADD COLUMN presence_stream_id INT; \ No newline at end of file |