Skip to content
Snippets Groups Projects
Commit 517c5417 authored by Joost Hemmen's avatar Joost Hemmen :basketball:
Browse files

Merge branch '89-errors-in-sms-init-tables' into 'main'

Resolve "errors in sms init tables"

Closes #89

See merge request !150
parents 42ebe464 4c76134f
No related branches found
No related tags found
1 merge request!150Resolve "errors in sms init tables"
Pipeline #378970 failed
......@@ -84,9 +84,9 @@ create table public.configuration_static_location_begin_action
begin_date timestamp with time zone not null,
begin_description text,
begin_contact_id integer not null,
x_property_id integer,
y_property_id integer,
z_property_id integer,
x double precision,
y double precision,
z double precision,
epsg_code varchar(256),
elevation_datum_name varchar(256),
elevation_datum_uri varchar(256),
......
......@@ -18,7 +18,9 @@ CREATE FOREIGN TABLE IF NOT EXISTS public.sms_configuration (
description text,
persistent_identifier varchar(256),
status varchar(256),
project varchar(256)
project varchar(256),
is_internal boolean,
is_public boolean
)
SERVER sms_db OPTIONS (schema_name 'public', table_name 'configuration');
......@@ -68,7 +70,9 @@ CREATE FOREIGN TABLE IF NOT EXISTS public.sms_device (
manufacturer_name varchar(256),
model varchar(256),
serial_number varchar(256),
persistent_identifier varchar(256)
persistent_identifier varchar(256),
is_internal boolean,
is_public boolean
)
SERVER sms_db OPTIONS (schema_name 'public', table_name 'device');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment