separate changelog for ignored hint

This commit is contained in:
Timo Bejan 2022-01-11 10:46:10 +02:00
parent b3eb73f14e
commit 210112007b
3 changed files with 14 additions and 3 deletions

View File

@ -1798,9 +1798,6 @@ databaseChangeLog:
- column:
name: updated_color
type: VARCHAR(255)
- column:
name: ignored_hint_color
type: VARCHAR(255)
tableName: color_configuration
- changeSet:
id: 1637073006104-77

View File

@ -0,0 +1,12 @@
databaseChangeLog:
- changeSet:
id: add-ignored-hint-color
author: timo
changes:
- addColumn:
columns:
- column:
name: ignored_hint_color
type: VARCHAR(255)
defaultValue: #aaaaaa
tableName: color_configuration

View File

@ -1,3 +1,5 @@
databaseChangeLog:
- include:
file: db/changelog/1-initial-schema.changelog.yaml
- include:
file: db/changelog/2-ignored-hint-color.changelog.yaml