diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2019-11-06 22:05:16 -0500 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2019-11-06 22:05:16 -0500 |
commit | 3991e7891ac847e91e3575db544516af0a06f7c6 (patch) | |
tree | c164fc2dc50607be090b6864f93951814b99e264 | |
parent | PostgreSQL doesn't like INTEGER UNSIGNED (diff) | |
download | synapse-3991e7891ac847e91e3575db544516af0a06f7c6.tar.xz |
drop unsigned
because it looks like PostgreSQL wants the data type to be one word
-rw-r--r-- | synapse/storage/data_stores/main/schema/delta/56/room_key_etag.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/data_stores/main/schema/delta/56/room_key_etag.sql b/synapse/storage/data_stores/main/schema/delta/56/room_key_etag.sql index 67dde4acff..7d70dd071e 100644 --- a/synapse/storage/data_stores/main/schema/delta/56/room_key_etag.sql +++ b/synapse/storage/data_stores/main/schema/delta/56/room_key_etag.sql @@ -14,4 +14,4 @@ */ -- store the current etag of backup version -ALTER TABLE e2e_room_keys_versions ADD COLUMN etag BIGINT UNSIGNED; +ALTER TABLE e2e_room_keys_versions ADD COLUMN etag BIGINT; |