-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: delete useless cartography checkboxes * fix: check that required fields are not empty or blank * chore: generate not null constraints from liquibase * chore: update required fields with non null value via liquibase sql * chore: update release candidate version
- Loading branch information
1 parent
398e00f
commit 37ee108
Showing
30 changed files
with
731 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
...abase/src/main/resources/db/changelog/changes/h2/20211125174155-not_null_constraints.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
databaseChangeLog: | ||
- changeSet: | ||
id: 1637858656728-1 | ||
author: '? (generated)' | ||
changes: | ||
- modifyDataType: | ||
columnName: COMMENT | ||
newDataType: varchar(2147483647) | ||
tableName: FUNCTIONALITY | ||
- changeSet: | ||
id: 1637858656728-2 | ||
author: '? (generated)' | ||
changes: | ||
- modifyDataType: | ||
columnName: COMMENT | ||
newDataType: varchar(2147483647) | ||
tableName: PROBLEM | ||
- changeSet: | ||
id: 1637858656728-3 | ||
author: '? (generated)' | ||
changes: | ||
- modifyDataType: | ||
columnName: CONTENT | ||
newDataType: varchar(2147483647) | ||
tableName: EXECUTED_SCENARIO | ||
- changeSet: | ||
id: 1637858656728-4 | ||
author: '? (generated)' | ||
changes: | ||
- modifyDataType: | ||
columnName: CONTENT | ||
newDataType: varchar(2147483647) | ||
tableName: SCENARIO | ||
- changeSet: | ||
id: 1637858656728-5 | ||
author: '? (generated)' | ||
changes: | ||
- modifyDataType: | ||
columnName: EXCEPTION | ||
newDataType: varchar(2147483647) | ||
tableName: PROBLEM_PATTERN | ||
- changeSet: | ||
id: 1637858656728-6 | ||
author: '? (generated)' | ||
changes: | ||
- modifyDataType: | ||
columnName: MESSAGE | ||
newDataType: varchar(2147483647) | ||
tableName: COMMUNICATION | ||
|
Oops, something went wrong.