setup/postgres/psql_default_data.sql

Fri, 09 Oct 2020 11:50:21 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 09 Oct 2020 11:50:21 +0200
changeset 118
d3583959c875
parent 89
c69d5cb11d6c
child 253
e1cd3e698037
permissions
-rw-r--r--

adding a new project redirects to the projects overview (because we do not retrieve the ID of the inserted project yet)

universe@81 1 insert into lpit_issue_phases (status, phase) values
universe@81 2 ('InSpecification', 0),
universe@81 3 ('ToDo', 0),
universe@89 4 ('Scheduled', 0),
universe@81 5 ('InProgress', 1),
universe@81 6 ('InReview', 1),
universe@81 7 ('Done', 2),
universe@81 8 ('Rejected', 2),
universe@81 9 ('Withdrawn', 2),
universe@81 10 ('Duplicate', 2);

mercurial