mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
Manually move data migration scripts (#3264)
This commit is contained in:
@ -0,0 +1,5 @@
|
||||
-- Reseller Providers were being created with a NULL value in the [Name] column.
|
||||
-- This script will populate them with the value from [BusinessName] which was already required.
|
||||
UPDATE [dbo].[Provider]
|
||||
SET [Name] = [BusinessName]
|
||||
WHERE [Name] IS NULL
|
Reference in New Issue
Block a user