setup/postgres/psql_default_data.sql

Sun, 05 Oct 2025 17:47:31 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 05 Oct 2025 17:47:31 +0200
changeset 396
288cb8d22584
parent 253
e1cd3e698037
permissions
-rw-r--r--

add convenience button to progress an issue and change behavior of the resolve button when a variant is opened - resolves #735

insert into lpit_issue_phases (status, phase) values
    ('InSpecification', 0),
    ('ToDo', 0),
    ('Scheduled', 0),
    ('InProgress', 1),
    ('InReview', 1),
    ('Ready', 1),
    ('Done', 2),
    ('Rejected', 2),
    ('Withdrawn', 2),
    ('Duplicate', 2);

mercurial