mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
22 lines
365 B
Transact-SQL
22 lines
365 B
Transact-SQL
IF COL_LENGTH('[dbo].[User]', 'UsesCryptoAgent') IS NOT NULL
|
|
BEGIN
|
|
ALTER TABLE
|
|
[dbo].[User]
|
|
DROP COLUMN
|
|
[UsesCryptoAgent]
|
|
END
|
|
GO
|
|
|
|
IF EXISTS(SELECT * FROM sys.views WHERE [Name] = 'UserView')
|
|
BEGIN
|
|
DROP VIEW [dbo].[UserView]
|
|
END
|
|
GO
|
|
|
|
CREATE VIEW [dbo].[UserView]
|
|
AS
|
|
SELECT
|
|
*
|
|
FROM
|
|
[dbo].[User]
|
|
GO |