Skip to content

Commit

Permalink
fix changelog for existing configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Paulsenik committed Dec 12, 2024
1 parent 860d37c commit c814aaf
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions backend/src/main/resources/db/changelog/db.changelog-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ databaseChangeLog:
- changeSet:
id: 1-add-hidden-column
author: Paulsenik
preConditions:
onFail: MARK_RAN
onError: MARK_RAN
preConditions:
- tableExists:
tableName: PRoST_User
changes:
- addColumn:
tableName: PRoST_User
Expand All @@ -10,9 +16,16 @@ databaseChangeLog:
name: hidden
type: BOOLEAN
defaultValue: false

- changeSet:
id: 2-add-kiosk-disable-buy
author: Paulsenik
preConditions:
onFail: MARK_RAN
onError: MARK_RAN
preConditions:
- tableExists:
tableName: PRoST_User
changes:
- addColumn:
tableName: PRoST_User
Expand Down

0 comments on commit c814aaf

Please sign in to comment.