mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 21:48:12 -05: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
|
END
|
||||||
GO
|
GO
|
||||||
|
|
||||||
IF EXISTS(SELECT * FROM sys.views WHERE [Name] = 'SsoConfig')
|
IF EXISTS(SELECT * FROM sys.views WHERE [Name] = 'SsoConfigView')
|
||||||
BEGIN
|
BEGIN
|
||||||
DROP VIEW [dbo].[SsoConfigView]
|
DROP VIEW [dbo].[SsoConfigView]
|
||||||
END
|
END
|
||||||
@ -26,6 +26,7 @@ SELECT
|
|||||||
*
|
*
|
||||||
FROM
|
FROM
|
||||||
[dbo].[SsoConfig]
|
[dbo].[SsoConfig]
|
||||||
|
GO
|
||||||
|
|
||||||
IF OBJECT_ID('[dbo].[SsoConfig_ReadByIdentifier]') IS NOT NULL
|
IF OBJECT_ID('[dbo].[SsoConfig_ReadByIdentifier]') IS NOT NULL
|
||||||
BEGIN
|
BEGIN
|
||||||
|
Loading…
x
Reference in New Issue
Block a user