]> git.ozlabs.org Git - patchwork/blob - apps/patchwork/sql/state.sql
Inital commit
[patchwork] / apps / patchwork / sql / state.sql
1 insert into patchwork_state (ordering, name, action_required) values
2     (0, 'New', True);
3 insert into patchwork_state (ordering, name, action_required) values
4     (1, 'Under Review', True);
5 insert into patchwork_state (ordering, name, action_required) values
6     (2, 'Accepted', False);
7 insert into patchwork_state (ordering, name, action_required) values
8     (3, 'Rejected', False);
9 insert into patchwork_state (ordering, name, action_required) values
10     (4, 'RFC', False);
11 insert into patchwork_state (ordering, name, action_required) values
12     (5, 'Not Applicable', False);
13 insert into patchwork_state (ordering, name, action_required) values
14     (6, 'Changes Requested', False);
15 insert into patchwork_state (ordering, name, action_required) values
16     (7, 'Awaiting Upstream', False);
17 insert into patchwork_state (ordering, name, action_required) values
18     (8, 'Superseded', False);
19 insert into patchwork_state (ordering, name, action_required) values
20     (9, 'Deferred', False);