Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tsm-orchestration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
UFZ TSM
tsm-orchestration
Commits
517c5417
Commit
517c5417
authored
11 months ago
by
Joost Hemmen
Browse files
Options
Downloads
Plain Diff
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
!150
Resolve "errors in sms init tables"
Pipeline
#378970
failed
11 months ago
Stage: integration
Stage: end-to-end
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
data/postgres/sms_db/sms_ddl.sql
+3
-3
3 additions, 3 deletions
data/postgres/sms_db/sms_ddl.sql
data/postgres/sms_db/sms_foreign_tables.sql
+6
-2
6 additions, 2 deletions
data/postgres/sms_db/sms_foreign_tables.sql
with
9 additions
and
5 deletions
data/postgres/sms_db/sms_ddl.sql
+
3
−
3
View file @
517c5417
...
...
@@ -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
),
...
...
This diff is collapsed.
Click to expand it.
data/postgres/sms_db/sms_foreign_tables.sql
+
6
−
2
View file @
517c5417
...
...
@@ -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'
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment