mirror of
https://github.com/bitwarden/server.git
synced 2024-11-23 12:25:16 +01:00
20 lines
266 B
MySQL
20 lines
266 B
MySQL
|
ALTER TABLE
|
|||
|
[dbo].[User]
|
|||
|
ALTER COLUMN
|
|||
|
[MasterPassword] NVARCHAR (300) NULL
|
|||
|
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
|