Skip to content

Commit

Permalink
Update vl_part_type.sql
Browse files Browse the repository at this point in the history
Add missing default values in vl_part_type.sql
  • Loading branch information
nicolas-sitylb authored Oct 2, 2023
1 parent d552ec9 commit f8d0818
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions value_lists/vl_part_type.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ ALTER TABLE qwat_vl.part_type ADD CONSTRAINT vl_part_type_pk PRIMARY KEY (id);
COMMENT ON TABLE qwat_vl.part_type IS 'table for installation parts. They are supposed to be on top of nodes and might be used to display a specific symbol.';

/* VALUES */
INSERT INTO qwat_vl.part_type (id, value_en, value_fr, value_ro) VALUES (101, 'other', 'autre', 'alta');
INSERT INTO qwat_vl.part_type (id, value_en, value_fr, value_ro) VALUES (102, 'unknown', 'inconnu', 'necunoscută');
INSERT INTO qwat_vl.part_type (id, value_en, value_fr, value_ro) VALUES (103, 'to be determined', 'à déterminer', 'de determinat');

INSERT INTO qwat_vl.part_type (id, value_en, value_fr, value_ro, vl_active) VALUES (9200, 'subscriber counter', 'compteur abonné' , 'apometru abonat', true);
INSERT INTO qwat_vl.part_type (id, value_en, value_fr, value_ro, vl_active) VALUES (9201, 'cap', 'bouchon' , 'dop', true);
Expand Down

0 comments on commit f8d0818

Please sign in to comment.