1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-19 10:28:09 -05:00

add missing GO statement

This commit is contained in:
jaasen-livefront 2025-06-13 16:59:26 -07:00
parent 8957a032d2
commit 02e4106d0d
No known key found for this signature in database

View File

@ -20,6 +20,8 @@ GO
CREATE NONCLUSTERED INDEX [IX_SecurityTask_OrganizationId] CREATE NONCLUSTERED INDEX [IX_SecurityTask_OrganizationId]
ON [dbo].[SecurityTask]([OrganizationId] ASC) WHERE OrganizationId IS NOT NULL; ON [dbo].[SecurityTask]([OrganizationId] ASC) WHERE OrganizationId IS NOT NULL;
GO
CREATE NONCLUSTERED INDEX IX_SecurityTask_Status_OrgId_CreationDateDesc CREATE NONCLUSTERED INDEX IX_SecurityTask_Status_OrgId_CreationDateDesc
ON dbo.SecurityTask (Status, OrganizationId, CreationDate DESC) ON dbo.SecurityTask (Status, OrganizationId, CreationDate DESC)
INCLUDE (CipherId, [Type], RevisionDate); INCLUDE (CipherId, [Type], RevisionDate);