1
0

fudge around postgres & sqlite having different booleans

This commit is contained in:
Matthew Hodgson
2018-08-23 00:43:01 +02:00
parent e9d8fcce35
commit 0f003270ab

View File

@@ -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);