fix: issue status Scheduled belongs to phase 0

Sun, 21 Jun 2020 11:43:08 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 21 Jun 2020 11:43:08 +0200
changeset 89
c69d5cb11d6c
parent 88
1438e5a22c55
child 90
2c74e36752f9

fix: issue status Scheduled belongs to phase 0

setup/postgres/psql_default_data.sql file | annotate | diff | comparison | revisions
src/main/java/de/uapcore/lightpit/entities/IssueStatus.java file | annotate | diff | comparison | revisions
     1.1 --- a/setup/postgres/psql_default_data.sql	Sun Jun 21 11:38:16 2020 +0200
     1.2 +++ b/setup/postgres/psql_default_data.sql	Sun Jun 21 11:43:08 2020 +0200
     1.3 @@ -1,7 +1,7 @@
     1.4  insert into lpit_issue_phases (status, phase) values
     1.5      ('InSpecification', 0),
     1.6      ('ToDo', 0),
     1.7 -    ('Scheduled', 1),
     1.8 +    ('Scheduled', 0),
     1.9      ('InProgress', 1),
    1.10      ('InReview', 1),
    1.11      ('Done', 2),
     2.1 --- a/src/main/java/de/uapcore/lightpit/entities/IssueStatus.java	Sun Jun 21 11:38:16 2020 +0200
     2.2 +++ b/src/main/java/de/uapcore/lightpit/entities/IssueStatus.java	Sun Jun 21 11:43:08 2020 +0200
     2.3 @@ -31,7 +31,7 @@
     2.4  public enum IssueStatus {
     2.5      InSpecification(0),
     2.6      ToDo(0),
     2.7 -    Scheduled(1),
     2.8 +    Scheduled(0),
     2.9      InProgress(1),
    2.10      InReview(1),
    2.11      Done(2),

mercurial