this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 8 lines 299 B view raw
1CREATE TABLE IF NOT EXISTS settings ( 2 id BIGSERIAL PRIMARY KEY, 3 unlocked_up_to_day INT NOT NULL DEFAULT 1, 4 CONSTRAINT settings_day_range CHECK (unlocked_up_to_day >= 1 AND unlocked_up_to_day <= 25) 5); 6 7-- Insert a single default row 8INSERT INTO settings (unlocked_up_to_day) VALUES (1);