You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- From https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server/blob/master/openid-connect-server-webapp/src/main/resources/db/scopes.sql
463
463
--
464
464
465
+
--
466
+
-- Fixes to generate the scope definitions during install
467
+
--
468
+
469
+
--
470
+
-- From https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server/blob/master/openid-connect-server-webapp/src/main/resources/db/tables/loading_temp_tables.sql
471
+
--
472
+
473
+
CREATE TEMPORARY TABLE IF NOT EXISTS system_scope_TEMP (
474
+
scope VARCHAR(256),
475
+
description VARCHAR(4096),
476
+
icon VARCHAR(256),
477
+
allow_dyn_reg BOOLEAN,
478
+
default_scope BOOLEAN,
479
+
structured BOOLEAN,
480
+
structured_param_description VARCHAR(256)
481
+
);
482
+
465
483
--
466
484
-- Turn off autocommit and start a transaction so that we can use the temp tables
467
485
-- Info from: http://stackoverflow.com/questions/2280465/how-do-i-turn-off-autocommit-for-a-mysql-client
0 commit comments