setup/postgres/psql_default_data.sql

Thu, 08 Oct 2020 20:38:43 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 08 Oct 2020 20:38:43 +0200
changeset 110
9d0be0b1580f
parent 89
c69d5cb11d6c
child 253
e1cd3e698037
permissions
-rw-r--r--

adds indicators for version status

replaces table column "Status" with version tag
fixes New Version form button not overriding the session version ID

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

mercurial