1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

Fix emergency access migration not working (#1244)

This commit is contained in:
Oscar Hinton 2021-03-29 17:28:36 +02:00 committed by GitHub
parent 688cc00d48
commit 339292f536
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ IF COL_LENGTH('[dbo].[EmergencyAccess]', 'Email') = 100
BEGIN
ALTER TABLE [dbo].[EmergencyAccess]
ALTER COLUMN
Email NVARCHAR(256) NOT NULL
Email NVARCHAR(256) NULL
END
GO