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
-- index to avoid full table scan when checking for survey duplicates
15970
+
CREATE INDEX idx_externalmessage_report_id
15971
+
ON externalmessage (reportid);
15972
+
15973
+
UPDATE featureconfiguration
15974
+
SET properties = '{"FETCH_MODE":false,"FORCE_AUTOMATIC_PROCESSING":true,"SURVEY_FETCH_ENABLED":true}'
15975
+
where featuretype = 'EXTERNAL_MESSAGES';
15976
+
15977
+
15978
+
INSERT INTO userroles_userrights (userrole_id, userright) SELECT id, 'EXTERNAL_MESSAGE_SURVEY_RESPONSE_VIEW' FROM public.userroles WHERE userroles.linkeddefaultuserrole in ('ADMIN');
15979
+
INSERT INTO userroles_userrights (userrole_id, userright) SELECT id, 'EXTERNAL_MESSAGE_SURVEY_RESPONSE_PROCESS' FROM public.userroles WHERE userroles.linkeddefaultuserrole in ('ADMIN');
15980
+
INSERT INTO userroles_userrights (userrole_id, userright) SELECT id, 'EXTERNAL_MESSAGE_SURVEY_RESPONSE_DELETE' FROM public.userroles WHERE userroles.linkeddefaultuserrole in ('ADMIN');
15981
+
15982
+
15983
+
INSERT INTO schema_version (version_number, comment)
15984
+
VALUES (629, '#13832 - External Survey facade');
15985
+
15889
15986
-- *** Insert new sql commands BEFORE this line. Remember to always consider _history tables. ***
0 commit comments