Created
November 9, 2016 18:02
-
-
Save Dalmirog-zz/5cd03644eb63fa9e21599852045e4e76 to your computer and use it in GitHub Desktop.
Turn off maintenance mode from DB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE [dbo].[Configuration] | |
SET [JSON] = '{"IsInMaintenanceMode":false}' | |
WHERE ID = 'maintenance' | |
GO | |
SELECT * FROM [dbo].[Configuration] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment