Skip to content

Commit

Permalink
MID-4583 audit target owner type, sql scripts updated
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Apr 13, 2018
1 parent 215ab2d commit 445a1ac
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions config/sql/_all/h2-3.8-all.sql
Expand Up @@ -237,6 +237,7 @@ CREATE TABLE m_audit_event (
targetOid VARCHAR(36),
targetOwnerName VARCHAR(255),
targetOwnerOid VARCHAR(36),
targetOwnerType INTEGER,
targetType INTEGER,
taskIdentifier VARCHAR(255),
taskOID VARCHAR(255),
Expand Down
1 change: 1 addition & 0 deletions config/sql/_all/mysql-3.8-all-utf8mb4.sql
Expand Up @@ -283,6 +283,7 @@ CREATE TABLE m_audit_event (
targetOid VARCHAR(36) CHARSET utf8 COLLATE utf8_bin ,
targetOwnerName VARCHAR(255),
targetOwnerOid VARCHAR(36) CHARSET utf8 COLLATE utf8_bin ,
targetOwnerType INTEGER,
targetType INTEGER,
taskIdentifier VARCHAR(255),
taskOID VARCHAR(255) CHARSET utf8 COLLATE utf8_bin ,
Expand Down
1 change: 1 addition & 0 deletions config/sql/_all/mysql-3.8-all.sql
Expand Up @@ -283,6 +283,7 @@ CREATE TABLE m_audit_event (
targetOid VARCHAR(36),
targetOwnerName VARCHAR(255),
targetOwnerOid VARCHAR(36),
targetOwnerType INTEGER,
targetType INTEGER,
taskIdentifier VARCHAR(255),
taskOID VARCHAR(255),
Expand Down
1 change: 1 addition & 0 deletions config/sql/_all/oracle-3.8-all.sql
Expand Up @@ -233,6 +233,7 @@ CREATE TABLE m_audit_event (
targetOid VARCHAR2(36 CHAR),
targetOwnerName VARCHAR2(255 CHAR),
targetOwnerOid VARCHAR2(36 CHAR),
targetOwnerType NUMBER(10, 0),
targetType NUMBER(10, 0),
taskIdentifier VARCHAR2(255 CHAR),
taskOID VARCHAR2(255 CHAR),
Expand Down
1 change: 1 addition & 0 deletions config/sql/_all/postgresql-3.8-all.sql
Expand Up @@ -233,6 +233,7 @@ CREATE TABLE m_audit_event (
targetOid VARCHAR(36),
targetOwnerName VARCHAR(255),
targetOwnerOid VARCHAR(36),
targetOwnerType INT4,
targetType INT4,
taskIdentifier VARCHAR(255),
taskOID VARCHAR(255),
Expand Down
1 change: 1 addition & 0 deletions config/sql/_all/sqlserver-3.8-all.sql
Expand Up @@ -233,6 +233,7 @@ CREATE TABLE m_audit_event (
targetOid NVARCHAR(36) COLLATE database_default,
targetOwnerName NVARCHAR(255) COLLATE database_default,
targetOwnerOid NVARCHAR(36) COLLATE database_default,
targetOwnerType INT,
targetType INT,
taskIdentifier NVARCHAR(255) COLLATE database_default,
taskOID NVARCHAR(255) COLLATE database_default,
Expand Down

0 comments on commit 445a1ac

Please sign in to comment.