aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0007-add-comment-problem-state.sql
blob: 8fa361d83ac436a43f3082d1594727e2048422f9 (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 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;