Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

fix: Liquibase - add precondition to changeset #231

Merged
merged 1 commit into from
Feb 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/main/resources/db/changelog/V016_add_testType_column.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ databaseChangeLog:
- changeSet:
id: add-groupname-columns
author: bergmann-dierk
preConditions:
- onFail: MARK_RAN
- onError: MARK_RAN
- not:
- columnExists:
tableName: quick_test
columnName: test_type
changes:
- addColumn:
tableName: quick_test
Expand Down