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

correct symbolori #64

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions datamodel/changelogs/0001/03_tdh_control_cable_db_sia405.sql
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,8 @@ COMMENT ON COLUMN tdh_od.sia405cc_cable_point.dimension1 IS '';
COMMENT ON COLUMN tdh_od.sia405cc_cable_point.dimension2 IS '';
ALTER TABLE tdh_od.sia405cc_cable_point ADD COLUMN altitude_lower_edge decimal(7,3) ;
COMMENT ON COLUMN tdh_od.sia405cc_cable_point.altitude_lower_edge IS ' / Höhe Unterkante';
ALTER TABLE tdh_od.sia405cc_cable_point ADD COLUMN symbolori_geometry geometry('POINT', :SRID);
CREATE INDEX in_tdh_sia405cc_cable_point_symbolori_geometry ON tdh_od.sia405cc_cable_point USING gist (symbolori_geometry );
COMMENT ON COLUMN tdh_od.sia405cc_cable_point.symbolori_geometry IS 'Default: 90 degree / Default: 90 Grad / Default: 90 degre';
ALTER TABLE tdh_od.sia405cc_cable_point ADD COLUMN symbolori decimal(4,1) ;
COMMENT ON COLUMN tdh_od.sia405cc_cable_point.symbolori IS 'Default: 90 degree / Default: 90 Grad / Default: 90 degre';
ALTER TABLE tdh_od.sia405cc_cable_point ADD COLUMN depth smallint ;
COMMENT ON COLUMN tdh_od.sia405cc_cable_point.depth IS '';
ALTER TABLE tdh_od.sia405cc_cable_point ADD COLUMN last_modification TIMESTAMP without time zone DEFAULT now();
Expand Down