mirror of
https://github.com/bitwarden/server
synced 2025-12-14 23:33:41 +00:00
Split LimitCollectionCreationDeletion into two database columns (#4709)
* Add new columns to `dbo.Organization` & its references * Feed existing data into new `dbo.Organization` column * Update Entity Framework database definitions * Move new EF columns out of the core entity definition * Generate Entity Framework migrations * Feed existing data into new `Organization` Entity Framework columns * Add a where clause to SQL migration
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
-- Sync existing data
|
||||
UPDATE [dbo].[Organization]
|
||||
SET
|
||||
[LimitCollectionCreation] = 1,
|
||||
[LimitCollectionDeletion] = 1
|
||||
WHERE [LimitCollectionCreationDeletion] = 1
|
||||
GO
|
||||
|
||||
Reference in New Issue
Block a user