mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
event index and setup script
This commit is contained in:
@ -216,5 +216,7 @@
|
||||
<Build Include="dbo\Stored Procedures\Cipher_DeleteByUserId.sql" />
|
||||
<Build Include="dbo\Stored Procedures\User_BumpAccountRevisionDateByCollectionId.sql" />
|
||||
<Build Include="dbo\Stored Procedures\User_BumpAccountRevisionDateByCipherId.sql" />
|
||||
<Build Include="dbo\Tables\Event.sql" />
|
||||
<Build Include="dbo\Stored Procedures\Event_Create.sql" />
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -11,3 +11,8 @@
|
||||
CONSTRAINT [PK_Event] PRIMARY KEY CLUSTERED ([Id] ASC)
|
||||
);
|
||||
|
||||
|
||||
GO
|
||||
CREATE UNIQUE NONCLUSTERED INDEX [IX_Event_Date]
|
||||
ON [dbo].[Event]([Date] ASC);
|
||||
|
||||
|
Reference in New Issue
Block a user