1
0
mirror of https://github.com/bitwarden/server synced 2025-12-31 23:53:17 +00:00

reimport database for formatting

This commit is contained in:
Kyle Spearrin
2017-04-25 10:55:12 -04:00
parent 6e87d9c21f
commit 8ade63fd45
16 changed files with 122 additions and 121 deletions

View File

@@ -14,11 +14,11 @@
GO
CREATE NONCLUSTERED INDEX [IX_Cipher_UserId_Type]
ON [dbo].[Cipher]([UserId] ASC, [Type] ASC);
CREATE NONCLUSTERED INDEX [IX_Cipher_OrganizationId_Type]
ON [dbo].[Cipher]([OrganizationId] ASC, [Type] ASC) WHERE ([OrganizationId] IS NOT NULL);
GO
CREATE NONCLUSTERED INDEX [IX_Cipher_OrganizationId_Type]
ON [dbo].[Cipher]([OrganizationId] ASC, [Type] ASC)
WHERE [OrganizationId] IS NOT NULL;
CREATE NONCLUSTERED INDEX [IX_Cipher_UserId_Type]
ON [dbo].[Cipher]([UserId] ASC, [Type] ASC);