1
0
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:
Rui Tome
2024-01-11 14:04:51 +00:00
parent 8cc889554d
commit 8a5ea76d8d
4 changed files with 5 additions and 0 deletions

View File

@ -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;