setup/postgres/psql_default_data.sql

Thu, 30 Jan 2025 21:20:27 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 30 Jan 2025 21:20:27 +0100
changeset 347
d1edd8d9c8a1
parent 253
e1cd3e698037
permissions
-rw-r--r--

prepare implementation of "variants"

introduces the class, implements basic DAO stuff, and
adds the new path parameter

relates to #491

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