We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Tables IDN_AUTH_USER and IDN_AUT_USER_SESSION_MAPPING are duplicated in org.wso2.carbon.identity.core.server.feature/resources/dbscripts/postgresql.sql
The file should contain only one instance of
DROP TABLE IF EXISTS IDN_AUTH_USER; CREATE TABLE IDN_AUTH_USER ( USER_ID VARCHAR(255) NOT NULL, USER_NAME VARCHAR(255) NOT NULL, TENANT_ID INTEGER NOT NULL, DOMAIN_NAME VARCHAR(255) NOT NULL, IDP_ID INTEGER NOT NULL, PRIMARY KEY (USER_ID), CONSTRAINT USER_STORE_CONSTRAINT UNIQUE (USER_NAME, TENANT_ID, DOMAIN_NAME, IDP_ID));
and
DROP TABLE IF EXISTS IDN_AUTH_USER_SESSION_MAPPING; CREATE TABLE IDN_AUTH_USER_SESSION_MAPPING ( USER_ID VARCHAR(255) NOT NULL, SESSION_ID VARCHAR(255) NOT NULL, CONSTRAINT USER_SESSION_STORE_CONSTRAINT UNIQUE (USER_ID, SESSION_ID));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Tables IDN_AUTH_USER and IDN_AUT_USER_SESSION_MAPPING are duplicated in org.wso2.carbon.identity.core.server.feature/resources/dbscripts/postgresql.sql
The file should contain only one instance of
and
The text was updated successfully, but these errors were encountered: