mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
⚠️ Do not specify database in migration files (#1628)
* Do not specify database in migration files * Rename migrations to force them to re-run * Use new migration files * Rename EF migrations
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
-- Split Manage Assigned Collections into edit and delete
|
||||
UPDATE [vault_dev].[dbo].[OrganizationUser]
|
||||
UPDATE [dbo].[OrganizationUser]
|
||||
SET [Permissions] =
|
||||
JSON_MODIFY(
|
||||
JSON_MODIFY(
|
||||
@ -27,7 +27,7 @@ WHERE [Permissions] IS NOT NULL
|
||||
)
|
||||
|
||||
-- Split Manage All Collections into create, edit, and delete
|
||||
UPDATE [vault_dev].[dbo].[OrganizationUser]
|
||||
UPDATE [dbo].[OrganizationUser]
|
||||
SET [Permissions] =
|
||||
JSON_MODIFY(
|
||||
JSON_MODIFY(
|
Reference in New Issue
Block a user