diff options
author | Erik Johnston <erik@matrix.org> | 2017-07-11 14:25:46 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-07-11 14:25:46 +0100 |
commit | e52c391cd452077fc219fad0db8b9e5499251e5b (patch) | |
tree | 614d9092853782657b4ed9465cca263a3d5c29c4 /synapse/storage/schema | |
parent | Comments (diff) | |
download | synapse-e52c391cd452077fc219fad0db8b9e5499251e5b.tar.xz |
Rename column to attestation_json
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r-- | synapse/storage/schema/delta/43/group_server.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/schema/delta/43/group_server.sql b/synapse/storage/schema/delta/43/group_server.sql index bfe8c2ca4a..b55b0a8deb 100644 --- a/synapse/storage/schema/delta/43/group_server.sql +++ b/synapse/storage/schema/delta/43/group_server.sql @@ -73,7 +73,7 @@ CREATE TABLE group_attestations_remote ( group_id TEXT NOT NULL, user_id TEXT NOT NULL, valid_until_ms BIGINT NOT NULL, - attestation TEXT NOT NULL + attestation_json TEXT NOT NULL ); CREATE INDEX group_attestations_remote_g_idx ON group_attestations_remote(group_id, user_id); |