aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0026-change_interest_count_default.sql
blob: 7c78f6fe8dc7e5e21c9470def354c0c14ca750d8 (plain)
1
2
3
4
5
6
7
8
9
BEGIN;

    ALTER TABLE problem
        ALTER COLUMN interest_count SET DEFAULT 0;

    UPDATE problem SET interest_count = 0
        WHERE interest_count IS NULL;

COMMIT;