Files
DP44/DataPRO/Modules/Database/DatabaseInitializationScripts/.svn/pristine/f1/f1ad544c3aa6e5140f12bbc0fc74f7b22b291b38.svn-base

11 lines
648 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
UPDATE [dbo].[DefaultProperties] SET DefaultValue = 'True' WHERE PropertyName = 'AllowAdvancedRecordingModes';
--Admin
UPDATE [dbo].[UserProperties] SET PropertyValue = 'True' WHERE
UserID = (SELECT ID FROM [dbo].[Users] WHERE UserName = 'Admin') AND
PropertyId = (SELECT PropertyId FROM [dbo].[DefaultProperties] WHERE PropertyName = 'AllowAdvancedRecordingModes');
UPDATE [dbo].[UserProperties] SET PropertyValue = 'True' WHERE
UserID = (SELECT ID FROM [dbo].[Users] WHERE UserName = @InitializationType) AND
PropertyId = (SELECT PropertyId FROM [dbo].[DefaultProperties] WHERE PropertyName = 'AllowAdvancedRecordingModes');