Skip to content

Commit

Permalink
Merge pull request #147 from bcgov/feature/auditIncrease
Browse files Browse the repository at this point in the history
Audit column increase
  • Loading branch information
cditcher authored Jul 25, 2024
2 parents 98411ab + e6f0c8b commit aa6918d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public class StudentEntity {
/**
* The Create user.
*/
@Column(name = "CREATE_USER", updatable = false, length = 32)
@Column(name = "CREATE_USER", updatable = false, length = 100)
String createUser;
/**
* The Create date.
Expand All @@ -177,7 +177,7 @@ public class StudentEntity {
/**
* The Update user.
*/
@Column(name = "UPDATE_USER", length = 32)
@Column(name = "UPDATE_USER", length = 100)
String updateUser;
/**
* The Update date.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public class StudentHistoryEntity {
/**
* The Create user.
*/
@Column(name = "CREATE_USER", updatable = false, length = 32)
@Column(name = "CREATE_USER", updatable = false, length = 100)
String createUser;
/**
* The Create date.
Expand All @@ -173,7 +173,7 @@ public class StudentHistoryEntity {
/**
* The Update user.
*/
@Column(name = "UPDATE_USER", length = 32)
@Column(name = "UPDATE_USER", length = 100)
String updateUser;
/**
* The Update date.
Expand Down
17 changes: 17 additions & 0 deletions api/src/main/resources/db/migration/V1.0.34__STUDENT_API.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
ALTER TABLE STUDENT_EVENT
MODIFY (
CREATE_USER VARCHAR2(100),
UPDATE_USER VARCHAR2(100)
);

ALTER TABLE STUDENT
MODIFY (
CREATE_USER VARCHAR2(100),
UPDATE_USER VARCHAR2(100)
);

ALTER TABLE STUDENT_HISTORY
MODIFY (
CREATE_USER VARCHAR2(100),
UPDATE_USER VARCHAR2(100)
);

0 comments on commit aa6918d

Please sign in to comment.