monthly_active_users
This data as json
0 records
CREATE TABLE monthly_active_users ( user_id TEXT NOT NULL, timestamp BIGINT NOT NULL ); CREATE UNIQUE INDEX monthly_active_users_users ON monthly_active_users(user_id); CREATE INDEX monthly_active_users_time_stamp ON monthly_active_users(timestamp);