aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0022-add_interest_count_to_problems.sql
blob: 4a4703ae165faf06906e06c84e462fa97820e21c (plain)
1
2
3
4
5
6
begin;

ALTER table problem
    ADD COLUMN interest_count integer DEFAULT 0;

commit;