Skip to content

Commit

Permalink
add active data in project initial data
Browse files Browse the repository at this point in the history
  • Loading branch information
anarute committed Sep 13, 2023
1 parent d8b1c13 commit cafdfe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/initialData.sql
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ INSERT INTO sector VALUES (1, 'tech');
SELECT nextval(pg_get_serial_sequence('sector', 'id'));

INSERT INTO customer (name, type, sectorid) VALUES ('Internal', 'Small', 1);
INSERT INTO project (description, areaid, customerid) VALUES ('Holidays', 1, 1);
INSERT INTO project (description, areaid, customerid, activation) VALUES ('Holidays', 1, 1, true);

0 comments on commit cafdfe3

Please sign in to comment.