Skip to content

Commit e18fa60

Browse files
committed
database sync
1 parent 0714ed5 commit e18fa60

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

openid-connect-server-webapp/src/main/resources/db/tables/mysql_database_tables.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ CREATE TABLE IF NOT EXISTS permission_ticket (
299299

300300
CREATE TABLE IF NOT EXISTS permission (
301301
id BIGINT AUTO_INCREMENT PRIMARY KEY,
302-
resource_set_id BIGINT NOT NULL
302+
resource_set_id BIGINT
303303
);
304304

305305
CREATE TABLE IF NOT EXISTS permission_scope (

openid-connect-server-webapp/src/main/resources/db/tables/psql_database_tables.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ CREATE TABLE IF NOT EXISTS permission_ticket (
299299

300300
CREATE TABLE IF NOT EXISTS permission (
301301
id SERIAL PRIMARY KEY,
302-
resource_set_id BIGINT NOT NULL
302+
resource_set_id BIGINT
303303
);
304304

305305
CREATE TABLE IF NOT EXISTS permission_scope (

0 commit comments

Comments
 (0)