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
ALTER TABLE environmentsamples_history ADD COLUMN vectortype varchar(255);
13837
13837
13838
13838
INSERT INTO schema_version (version_number, comment) VALUES (561, 'Added vectors to the environment #13267');
13839
+
13840
+
-- 2025-03-17 add default disease configuration user rights for admin user role #13265
13841
+
INSERT INTO userroles_userrights (userrole_id, userright) SELECT id, 'DISEASE_MANAGEMENT' FROM public.userroles WHERE userroles.linkeddefaultuserrole in ('ADMIN');
13842
+
13843
+
INSERT INTO schema_version (version_number, comment) VALUES (562, 'Disease configuration user interface #13265');
13844
+
13839
13845
-- *** Insert new sql commands BEFORE this line. Remember to always consider _history tables. ***
0 commit comments