Skip to content

Commit

Permalink
Oppdater avhengighet til bidrag-transport
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur93 committed Nov 27, 2023
1 parent e706d4d commit e1ba758
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<java.version>21</java.version>
<kotlin.version>1.9.20</kotlin.version>
<bidrag-commons.version>20231124134729_6778484</bidrag-commons.version>
<bidrag-transport.version>1.0-SNAPSHOT</bidrag-transport.version>
<bidrag-transport.version>20231127103909_8cd2d59</bidrag-transport.version>
<logback-encoder.version>7.4</logback-encoder.version>
<token-support.version>3.1.8</token-support.version>
<springdoc.version>2.2.0</springdoc.version>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
-- Table: SIVILSTAND

-- Legg til kolonne for å gjøre det mulig å kjøre skriptet flere ganger uten at det feiler
alter table SIVILSTAND
add column if not exists SIVILSTAND_TYPE text;

alter table SIVILSTAND
rename column SIVILSTAND_TYPE to SIVILSTAND_TYPE_OLD;

ALTER TABLE SIVILSTAND
ADD COLUMN SIVILSTAND TEXT;
ADD COLUMN if not exists SIVILSTAND TEXT;

UPDATE SIVILSTAND
SET SIVILSTAND = 'GIFT_SAMBOER'
Expand Down

0 comments on commit e1ba758

Please sign in to comment.