Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix IDN_PUSH_DEVICE_STORE table syntax issues #6381

Merged
merged 2 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1689,7 +1689,7 @@ CREATE TABLE IDN_OAUTH2_AUTHZ_CODE_AUTHORIZATION_DETAILS (
FOREIGN KEY (CODE_ID) REFERENCES IDN_OAUTH2_AUTHORIZATION_CODE(CODE_ID) ON DELETE CASCADE
);

IF NOT EXIST (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[IDN_PUSH_DEVICE_STORE]') AND TYPE IN (N'U'))
IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[IDN_PUSH_DEVICE_STORE]') AND TYPE IN (N'U'))
CREATE TABLE IDN_PUSH_DEVICE_STORE (
ID VARCHAR(255) NOT NULL,
USER_ID VARCHAR(255) NOT NULL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1562,7 +1562,7 @@ CREATE TABLE IF NOT EXISTS IDN_OAUTH2_AUTHZ_CODE_AUTHORIZATION_DETAILS (
FOREIGN KEY (CODE_ID) REFERENCES IDN_OAUTH2_AUTHORIZATION_CODE(CODE_ID) ON DELETE CASCADE
) DEFAULT CHARACTER SET latin1 ENGINE INNODB;

CREATE TABLE IF NOT EXIST IDN_PUSH_DEVICE_STORE (
CREATE TABLE IF NOT EXISTS IDN_PUSH_DEVICE_STORE (
ID VARCHAR(255) NOT NULL,
USER_ID VARCHAR(255) NOT NULL,
DEVICE_NAME VARCHAR(45) NOT NULL,
Expand Down
Loading