mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 00:22:50 -05:00
[AC-1682] Bumped up the date on data migration scripts
This commit is contained in:
@ -30,6 +30,11 @@ BEGIN
|
|||||||
-- Execute the stored procedure for the current OrganizationId
|
-- Execute the stored procedure for the current OrganizationId
|
||||||
EXEC [dbo].[Organization_EnableCollectionEnhancements] @OrganizationId;
|
EXEC [dbo].[Organization_EnableCollectionEnhancements] @OrganizationId;
|
||||||
|
|
||||||
|
-- Update the Organization to set FlexibleCollections = 1
|
||||||
|
UPDATE [dbo].[Organization]
|
||||||
|
SET [FlexibleCollections] = 1
|
||||||
|
WHERE [Id] = @OrganizationId;
|
||||||
|
|
||||||
FETCH NEXT FROM OrgCursor INTO @OrganizationId;
|
FETCH NEXT FROM OrgCursor INTO @OrganizationId;
|
||||||
END;
|
END;
|
||||||
|
|
Reference in New Issue
Block a user