-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to increase audit column size to 100.
- Loading branch information
1 parent
ab35dca
commit ecf20e3
Showing
10 changed files
with
47 additions
and
18 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
29 changes: 29 additions & 0 deletions
29
api/src/main/resources/db/migration/V1.0.36__PEN_REQUEST_BATCH_API.sql
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,29 @@ | ||
ALTER TABLE PEN_REQUEST_BATCH | ||
MODIFY ( | ||
CREATE_USER VARCHAR2(100), | ||
UPDATE_USER VARCHAR2(100) | ||
); | ||
|
||
ALTER TABLE PEN_REQUEST_BATCH_HISTORY | ||
MODIFY ( | ||
CREATE_USER VARCHAR2(100), | ||
UPDATE_USER VARCHAR2(100) | ||
); | ||
|
||
ALTER TABLE PEN_REQUEST_BATCH_SAGA | ||
MODIFY ( | ||
CREATE_USER VARCHAR2(100), | ||
UPDATE_USER VARCHAR2(100) | ||
); | ||
|
||
ALTER TABLE PEN_REQUEST_BATCH_SAGA_EVENT_STATES | ||
MODIFY ( | ||
CREATE_USER VARCHAR2(100), | ||
UPDATE_USER VARCHAR2(100) | ||
); | ||
|
||
ALTER TABLE PEN_REQUEST_BATCH_STUDENT | ||
MODIFY ( | ||
CREATE_USER VARCHAR2(100), | ||
UPDATE_USER VARCHAR2(100) | ||
); |