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

ALTER table problem
    ADD COLUMN interest_count integer;

commit;