aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0007-add-comment-problem-state.sql
blob: 2a3a95ada303b112065b8d5af482ca51adce1f2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
begin;

    ALTER TABLE comment ADD column problem_state text;

    ALTER TABLE comment ADD CONSTRAINT comment_problem_state_check CHECK ( 
        problem_state = 'confirmed'
        or problem_state = 'investigating'
        or problem_state = 'planned'
        or problem_state = 'in progress'
        or problem_state = 'closed'
        or problem_state = 'fixed'
        or problem_state = 'fixed - council'
        or problem_state = 'fixed - user'
    );

commit;