mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 15:42:48 -05:00
Update SQL files to be backwards compatible when adding columns (#1635)
* Update SQL files to be backwards compatible when adding columns * Remove 'UseResetPasswordCustomOrg' SQL script
This commit is contained in:
@ -69,6 +69,8 @@ UPDATE
|
||||
[dbo].[CollectionGroup]
|
||||
SET
|
||||
[HidePasswords] = 0
|
||||
WHERE
|
||||
[HidePasswords] IS NULL
|
||||
GO
|
||||
|
||||
ALTER TABLE
|
||||
@ -90,6 +92,8 @@ UPDATE
|
||||
[dbo].[CollectionUser]
|
||||
SET
|
||||
[HidePasswords] = 0
|
||||
WHERE
|
||||
[HidePasswords] IS NULL
|
||||
GO
|
||||
|
||||
ALTER TABLE
|
||||
|
Reference in New Issue
Block a user