mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
Merge pull request #790 from bitwarden/bugfix-migrate
fixed syntax error in migration
This commit is contained in:
commit
55e6548dea
@ -14,7 +14,7 @@ BEGIN
|
||||
END
|
||||
GO
|
||||
|
||||
IF EXISTS(SELECT * FROM sys.views WHERE [Name] = 'SsoConfig')
|
||||
IF EXISTS(SELECT * FROM sys.views WHERE [Name] = 'SsoConfigView')
|
||||
BEGIN
|
||||
DROP VIEW [dbo].[SsoConfigView]
|
||||
END
|
||||
@ -26,6 +26,7 @@ SELECT
|
||||
*
|
||||
FROM
|
||||
[dbo].[SsoConfig]
|
||||
GO
|
||||
|
||||
IF OBJECT_ID('[dbo].[SsoConfig_ReadByIdentifier]') IS NOT NULL
|
||||
BEGIN
|
||||
|
Loading…
Reference in New Issue
Block a user