1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-18 16:11:28 -05:00

PM-20574 adding index in scripts and missing table

This commit is contained in:
voommen-livefront
2025-06-17 11:12:27 -05:00
parent ceebfd7f57
commit 7151ae40bd
4 changed files with 59 additions and 0 deletions

View File

@ -14,6 +14,10 @@ BEGIN
CREATE NONCLUSTERED INDEX [IX_OrganizationReport_OrganizationId]
ON [dbo].[OrganizationReport]([OrganizationId] ASC);
CREATE NONCLUSTERED INDEX [IX_OrganizationReport_OrganizationId_Date]
ON [dbo].[OrganizationReport]([OrganizationId] ASC, [Date] DESC);
END
GO