summary refs log tree commit diff
path: root/synapse/storage/schema
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-04-13 17:03:49 +0100
committerErik Johnston <erik@matrix.org>2015-04-13 17:03:49 +0100
commit86fc9b617c5eb91186a8466370ddd97f3acd34a2 (patch)
tree77e27c555e59c6504947f1c28932db772fd2e1fb /synapse/storage/schema
parentSupport running porting script multiple times (diff)
downloadsynapse-86fc9b617c5eb91186a8466370ddd97f3acd34a2.tar.xz
For backwards compat, make state_groups.id have a type of int, not varchar
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r--synapse/storage/schema/full_schemas/16/state.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/schema/full_schemas/16/state.sql b/synapse/storage/schema/full_schemas/16/state.sql

index 8d6b94a616..8c51610396 100644 --- a/synapse/storage/schema/full_schemas/16/state.sql +++ b/synapse/storage/schema/full_schemas/16/state.sql
@@ -14,7 +14,7 @@ */ CREATE TABLE IF NOT EXISTS state_groups( - id VARCHAR(20) PRIMARY KEY, + id BIGINT UNSIGNED PRIMARY KEY, room_id VARCHAR(150) NOT NULL, event_id VARCHAR(150) NOT NULL );