--- a/setup/postgres/psql_default_data.sql Sun May 24 15:30:43 2020 +0200 +++ b/setup/postgres/psql_default_data.sql Sat May 30 15:26:15 2020 +0200 @@ -0,0 +1,10 @@ +insert into lpit_issue_phases (status, phase) values + ('InSpecification', 0), + ('ToDo', 0), + ('Scheduled', 1), + ('InProgress', 1), + ('InReview', 1), + ('Done', 2), + ('Rejected', 2), + ('Withdrawn', 2), + ('Duplicate', 2);