setup/postgres/psql_default_data.sql

Fri, 23 Oct 2020 11:14:37 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 23 Oct 2020 11:14:37 +0200
changeset 141
8160dfc4dbc3
parent 89
c69d5cb11d6c
child 253
e1cd3e698037
permissions
-rw-r--r--

renames sort criteria PHASE to DONE, because phase 0 and 1 are combined

insert into lpit_issue_phases (status, phase) values
    ('InSpecification', 0),
    ('ToDo', 0),
    ('Scheduled', 0),
    ('InProgress', 1),
    ('InReview', 1),
    ('Done', 2),
    ('Rejected', 2),
    ('Withdrawn', 2),
    ('Duplicate', 2);

mercurial