summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2018-08-23 00:43:01 +0200
committerMatthew Hodgson <matthew@matrix.org>2018-08-23 00:43:01 +0200
commit0f003270abf37c704944793b1dc7c1905e6c2fc9 (patch)
tree85b402640b14b01c23140d3ef585d1dd518cb182
parentmake it work (diff)
downloadsynapse-0f003270abf37c704944793b1dc7c1905e6c2fc9.tar.xz
fudge around postgres & sqlite having different booleans
-rw-r--r--synapse/storage/schema/delta/52/free_mau.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/schema/delta/52/free_mau.sql b/synapse/storage/schema/delta/52/free_mau.sql
index 20b49e8198..3b4d03bfd6 100644
--- a/synapse/storage/schema/delta/52/free_mau.sql
+++ b/synapse/storage/schema/delta/52/free_mau.sql
@@ -14,6 +14,6 @@
  */
 
 ALTER TABLE monthly_active_users ADD COLUMN first_active BIGINT DEFAULT 0 NOT NULL;
-ALTER TABLE monthly_active_users ADD COLUMN trial BOOLEAN DEFAULT 0 NOT NULL;
+ALTER TABLE monthly_active_users ADD COLUMN trial BOOLEAN;
 
 CREATE INDEX monthly_active_users_first_active ON monthly_active_users(first_active);