Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2025-02-04-add_vl_pipe_section_mg_material #85

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
6 changes: 3 additions & 3 deletions datamodel/changelogs/0001/03_tdh_db_sia405.sql
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ COMMENT ON COLUMN tdh_od.pipe_section.coating IS '';
COMMENT ON COLUMN tdh_od.pipe_section.diameter_inner IS '';
ALTER TABLE tdh_od.pipe_section ADD COLUMN diameter_outer smallint ;
COMMENT ON COLUMN tdh_od.pipe_section.diameter_outer IS '';
ALTER TABLE tdh_od.pipe_section ADD COLUMN nominal_diameter text;
ALTER TABLE tdh_od.pipe_section ADD CONSTRAINT ps_nominal_diameter_length_max_10 CHECK(char_length(nominal_diameter)<=10);
COMMENT ON COLUMN tdh_od.pipe_section.nominal_diameter IS 'yyy_als TEXT, da zum Teil auch Doppelwerte mit Schrägstrich (eg. 1500/800) / als TEXT, da zum Teil auch Doppelwerte mit Schrägstrich (z.B. 1500/800) / comme TEXTE, parcequ''on a aussi des valeurs doubles (par example 1500/800)';
ALTER TABLE tdh_od.pipe_section ADD COLUMN diameter_nominal text;
ALTER TABLE tdh_od.pipe_section ADD CONSTRAINT ps_diameter_nominal_length_max_10 CHECK(char_length(diameter_nominal)<=10);
COMMENT ON COLUMN tdh_od.pipe_section.diameter_nominal IS 'yyy_als TEXT, da zum Teil auch Doppelwerte mit Schrägstrich (eg. 1500/800) / als TEXT, da zum Teil auch Doppelwerte mit Schrägstrich (z.B. 1500/800) / comme TEXTE, parcequ''on a aussi des valeurs doubles (par example 1500/800)';
ALTER TABLE tdh_od.pipe_section ADD COLUMN length1 integer ;
COMMENT ON COLUMN tdh_od.pipe_section.length1 IS 'yyy_Laenge_abgewickelt / Laenge_abgewickelt / longueur développée';
ALTER TABLE tdh_od.pipe_section ADD COLUMN length2 integer ;
Expand Down
Loading