33 lines
1.5 KiB
SQL
33 lines
1.5 KiB
SQL
--
|
|
-- Turn off autocommit and start a transaction so that we can use the temp tables
|
|
--
|
|
|
|
SET AUTOCOMMIT FALSE;
|
|
|
|
START TRANSACTION;
|
|
|
|
--
|
|
-- Insert scope information into the temporary tables.
|
|
--
|
|
|
|
INSERT INTO system_scope_TEMP (scope, description, icon, allow_dyn_reg, default_scope, structured, structured_param_description) VALUES
|
|
('openid', 'log in using your identity', 'user', true, true, false, null),
|
|
('profile', 'basic profile information', 'list-alt', true, true, false, null),
|
|
('email', 'email address', 'envelope', true, true, false, null),
|
|
('address', 'physical address', 'home', true, true, false, null),
|
|
('phone', 'telephone number', 'bell', true, true, false, null),
|
|
('offline_access', 'offline access', 'time', true, false, false, null);
|
|
|
|
--
|
|
-- Merge the temporary scopes safely into the database. This is a two-step process to keep scopes from being created on every startup with a persistent store.
|
|
--
|
|
|
|
MERGE INTO system_scope
|
|
USING (SELECT scope, description, icon, allow_dyn_reg, default_scope, structured, structured_param_description FROM system_scope_TEMP) AS vals(scope, description, icon, allow_dyn_reg, default_scope, structured, structured_param_description)
|
|
ON vals.scope = system_scope.scope
|
|
WHEN NOT MATCHED THEN
|
|
INSERT (scope, description, icon, allow_dyn_reg, default_scope, structured, structured_param_description) VALUES(vals.scope, vals.description, vals.icon, vals.allow_dyn_reg, vals.default_scope, vals.structured, vals.structured_param_description);
|
|
|
|
COMMIT;
|
|
|
|
SET AUTOCOMMIT TRUE; |