summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-08-21 13:18:23 +0100
committerErik Johnston <erik@matrix.org>2017-08-21 16:37:29 +0100
commit8b50fe5330249fd24d50fa97385cd88ef6703d79 (patch)
treeb9b8f0748b99de59fbed1a21e503272a0e1c3550
parentFixup (diff)
downloadsynapse-8b50fe5330249fd24d50fa97385cd88ef6703d79.tar.xz
Use BOOLEAN rather than TEXT type
-rw-r--r--synapse/storage/schema/delta/43/group_server.sql2
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 01ac0edc35..e74554381f 100644
--- a/synapse/storage/schema/delta/43/group_server.sql
+++ b/synapse/storage/schema/delta/43/group_server.sql
@@ -150,7 +150,7 @@ CREATE TABLE local_group_membership (
     user_id TEXT NOT NULL,
     is_admin BOOLEAN NOT NULL,
     membership TEXT NOT NULL,
-    is_publicised TEXT NOT NULL,  -- if the user is publicising their membership
+    is_publicised BOOLEAN NOT NULL,  -- if the user is publicising their membership
     content TEXT NOT NULL
 );