-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/cb2 11667 - NOP tsk-update-store TrailerEntry into service re…
…quired changes (#42) * feat: NOP tsk-update-store trailer entry into service required changes * fix: using feature/cb2-11667 cvs-nop branch * added default value being set to null to align with table definition
- Loading branch information
1 parent
4760aac
commit d295b63
Showing
2 changed files
with
8 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--liquibase formatted sql | ||
--changeset liquibase:modifyDataType -multiple-tables:1 splitStatements:true endDelimiter:; context:dev | ||
|
||
ALTER TABLE auth_into_service CHANGE dateReceived dateReceived_old DATETIME; | ||
ALTER TABLE auth_into_service CHANGE dateAuthorised dateAuthorised_old DATETIME; | ||
ALTER TABLE auth_into_service CHANGE dateReceived_old dateAuthorised DATETIME DEFAULT NULL; | ||
ALTER TABLE auth_into_service CHANGE dateAuthorised_old dateReceived DATETIME DEFAULT NULL; |