Skip to content

Commit

Permalink
SAK-46022 Fixed commons ddl statements for PRIORITY (sakaiproject#9745)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianfish authored Sep 2, 2021
1 parent 557e122 commit eed5c1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion commons/impl/src/sql/mysql/commons_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ CREATE TABLE COMMONS_POST
CREATED_DATE datetime NOT NULL,
MODIFIED_DATE datetime NOT NULL,
RELEASE_DATE datetime NOT NULL,
PRIORITY bit(1) DEFAULT FALSE NOT NULL;
PRIORITY bit(1) DEFAULT FALSE NOT NULL,
INDEX creator_id (CREATOR_ID),
PRIMARY KEY(ID)
);
Expand Down
2 changes: 1 addition & 1 deletion commons/impl/src/sql/oracle/commons_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ CREATE TABLE COMMONS_POST (
CREATED_DATE timestamp NOT NULL,
MODIFIED_DATE timestamp NOT NULL,
RELEASE_DATE timestamp NOT NULL,
PRIORITY NUMBER(1) DEFAULT 0 NOT NULL
PRIORITY NUMBER(1) DEFAULT 0 NOT NULL,
PRIMARY KEY (ID)
);

Expand Down

0 comments on commit eed5c1d

Please sign in to comment.