1
0

WIP: track whether MAUs are trial or not

...and only promote them to non-trial if we have MAU headroom
This commit is contained in:
Matthew Hodgson
2018-08-22 20:25:11 +02:00
parent 4fef4553e9
commit a667e38db6

View File

@@ -14,5 +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 NOT NULL;
CREATE INDEX monthly_active_users_first_active ON monthly_active_users(first_active);