Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
raven
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Rune Åvar Ødegård
raven
Commits
d84bf767
Commit
d84bf767
authored
2 years ago
by
Christoffer Stoll
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
https://git.nilu.no/eea-tools/raven
parents
105e5203
bc38a3b3
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
db_scripts/changelog.xml
+2
-0
2 additions, 0 deletions
db_scripts/changelog.xml
db_scripts/update_v9.sql
+6
-0
6 additions, 0 deletions
db_scripts/update_v9.sql
with
8 additions
and
0 deletions
db_scripts/changelog.xml
+
2
−
0
View file @
d84bf767
...
...
@@ -9,4 +9,6 @@ http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
<include
file=
"update_v5.sql"
relativeToChangelogFile=
"true"
/>
<include
file=
"update_v6.sql"
relativeToChangelogFile=
"true"
/>
<include
file=
"update_v7.sql"
relativeToChangelogFile=
"true"
/>
<include
file=
"update_v9.sql"
relativeToChangelogFile=
"true"
/>
</databaseChangeLog>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
db_scripts/update_v9.sql
0 → 100644
+
6
−
0
View file @
d84bf767
-- Alter zone schema
alter
table
zones
alter
column
id
drop
default
;
alter
table
zones
alter
column
id
type
varchar
(
100
)
using
id
::
varchar
(
100
);
alter
table
zones
alter
column
code
type
varchar
(
100
)
using
code
::
varchar
(
100
);
alter
table
zones
alter
column
zone_type_uri
set
default
'http://inspire.ec.europa.eu/codeList/ZoneTypeCode/air'
;
alter
table
zones
drop
column
zone_code
;
\ No newline at end of file
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