1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

Requested updates

This commit is contained in:
Matt Portune
2020-06-24 12:24:36 -04:00
parent 09df3f64d3
commit 05891f2122
5 changed files with 15 additions and 13 deletions

View File

@ -12,7 +12,8 @@ IF NOT EXISTS (
AND object_id = OBJECT_ID('[dbo].[Organization]')
)
BEGIN
CREATE NONCLUSTERED INDEX [IX_Organization_Identifier]
CREATE UNIQUE NONCLUSTERED INDEX [IX_Organization_Identifier]
ON [dbo].[Organization]([Identifier] ASC)
WHERE [Identifier] IS NOT NULL;
END
GO