Skip to content

Commit b65904b

Browse files
committed
added temporary file creation; missed this in the patch
1 parent ad8cdef commit b65904b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

openidconnect.sql

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,24 @@ CREATE TABLE `whitelisted_site_scope` (
462462
-- From https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server/blob/master/openid-connect-server-webapp/src/main/resources/db/scopes.sql
463463
--
464464

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+
465483
--
466484
-- Turn off autocommit and start a transaction so that we can use the temp tables
467485
-- Info from: http://stackoverflow.com/questions/2280465/how-do-i-turn-off-autocommit-for-a-mysql-client

0 commit comments

Comments
 (0)