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
--- a/setup/postgres/psql_default_data.sql	Sun Jun 21 11:38:16 2020 +0200
+++ b/setup/postgres/psql_default_data.sql	Sun Jun 21 11:43:08 2020 +0200
@@ -1,7 +1,7 @@
 insert into lpit_issue_phases (status, phase) values
     ('InSpecification', 0),
     ('ToDo', 0),
-    ('Scheduled', 1),
+    ('Scheduled', 0),
     ('InProgress', 1),
     ('InReview', 1),
     ('Done', 2),
--- a/src/main/java/de/uapcore/lightpit/entities/IssueStatus.java	Sun Jun 21 11:38:16 2020 +0200
+++ b/src/main/java/de/uapcore/lightpit/entities/IssueStatus.java	Sun Jun 21 11:43:08 2020 +0200
@@ -31,7 +31,7 @@
 public enum IssueStatus {
     InSpecification(0),
     ToDo(0),
-    Scheduled(1),
+    Scheduled(0),
     InProgress(1),
     InReview(1),
     Done(2),

mercurial