Files
DP44/DataPRO/Modules/Database/DatabaseInitializationScripts/.svn/pristine/c8/c8053b999dd87bb4dfbf084d0f3d268aad4d17f6.svn-base
2026-04-17 14:55:32 -04:00

12 lines
651 B
Plaintext

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');
--AeroUser
UPDATE [dbo].[UserProperties] SET PropertyValue = 'True' WHERE
UserID = (SELECT ID FROM [dbo].[Users] WHERE UserName = 'AeroUser') AND
PropertyId = (SELECT PropertyId FROM [dbo].[DefaultProperties] WHERE PropertyName = 'AllowAdvancedRecordingModes');