1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 21:48:12 -05:00

reimport db

This commit is contained in:
Kyle Spearrin 2017-02-21 21:32:47 -05:00
parent f101541ff8
commit 8051995cc7
9 changed files with 21 additions and 21 deletions

View File

@ -66,15 +66,21 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Build Include="dbo\Tables\Cipher.sql" /> <Build Include="dbo\Tables\Cipher.sql" />
<Build Include="dbo\Tables\Share.sql" />
<Build Include="dbo\Tables\Device.sql" /> <Build Include="dbo\Tables\Device.sql" />
<Build Include="dbo\Tables\History.sql" /> <Build Include="dbo\Tables\History.sql" />
<Build Include="dbo\Tables\Grant.sql" /> <Build Include="dbo\Tables\Grant.sql" />
<Build Include="dbo\Tables\User.sql" /> <Build Include="dbo\Tables\User.sql" />
<Build Include="dbo\Views\ShareView.sql" />
<Build Include="dbo\Views\CipherView.sql" /> <Build Include="dbo\Views\CipherView.sql" />
<Build Include="dbo\Views\DeviceView.sql" /> <Build Include="dbo\Views\DeviceView.sql" />
<Build Include="dbo\Views\HistoryView.sql" /> <Build Include="dbo\Views\HistoryView.sql" />
<Build Include="dbo\Views\UserView.sql" /> <Build Include="dbo\Views\UserView.sql" />
<Build Include="dbo\Views\GrantView.sql" /> <Build Include="dbo\Views\GrantView.sql" />
<Build Include="dbo\Stored Procedures\Share_Create.sql" />
<Build Include="dbo\Stored Procedures\Share_DeleteById.sql" />
<Build Include="dbo\Stored Procedures\Share_ReadById.sql" />
<Build Include="dbo\Stored Procedures\Share_Update.sql" />
<Build Include="dbo\Stored Procedures\Cipher_Create.sql" /> <Build Include="dbo\Stored Procedures\Cipher_Create.sql" />
<Build Include="dbo\Stored Procedures\Cipher_DeleteById.sql" /> <Build Include="dbo\Stored Procedures\Cipher_DeleteById.sql" />
<Build Include="dbo\Stored Procedures\Cipher_ReadById.sql" /> <Build Include="dbo\Stored Procedures\Cipher_ReadById.sql" />
@ -103,11 +109,5 @@
<Build Include="dbo\Stored Procedures\Grant_ReadBySubjectId.sql" /> <Build Include="dbo\Stored Procedures\Grant_ReadBySubjectId.sql" />
<Build Include="dbo\Stored Procedures\Grant_Save.sql" /> <Build Include="dbo\Stored Procedures\Grant_Save.sql" />
<Build Include="dbo\Stored Procedures\User_ReadAccountRevisionDateById.sql" /> <Build Include="dbo\Stored Procedures\User_ReadAccountRevisionDateById.sql" />
<Build Include="dbo\Tables\Share.sql" />
<Build Include="dbo\Views\ShareView.sql" />
<Build Include="dbo\Stored Procedures\Share_Create.sql" />
<Build Include="dbo\Stored Procedures\Share_DeleteById.sql" />
<Build Include="dbo\Stored Procedures\Share_ReadById.sql" />
<Build Include="dbo\Stored Procedures\Share_Update.sql" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -33,4 +33,4 @@ BEGIN
@CreationDate, @CreationDate,
@RevisionDate @RevisionDate
) )
END END

View File

@ -23,4 +23,4 @@ BEGIN
[RevisionDate] = @RevisionDate [RevisionDate] = @RevisionDate
WHERE WHERE
[Id] = @Id [Id] = @Id
END END

View File

@ -33,4 +33,4 @@ BEGIN
@CreationDate, @CreationDate,
@RevisionDate @RevisionDate
) )
END END

View File

@ -9,4 +9,4 @@ BEGIN
[dbo].[Share] [dbo].[Share]
WHERE WHERE
[Id] = @Id [Id] = @Id
END END

View File

@ -10,4 +10,4 @@ BEGIN
[dbo].[ShareView] [dbo].[ShareView]
WHERE WHERE
[Id] = @Id [Id] = @Id
END END

View File

@ -23,4 +23,4 @@ BEGIN
[RevisionDate] = @RevisionDate [RevisionDate] = @RevisionDate
WHERE WHERE
[Id] = @Id [Id] = @Id
END END

View File

@ -1,12 +1,12 @@
CREATE TABLE [dbo].[Share] ( CREATE TABLE [dbo].[Share] (
[Id] UNIQUEIDENTIFIER NOT NULL, [Id] UNIQUEIDENTIFIER NOT NULL,
[UserId] UNIQUEIDENTIFIER NOT NULL, [UserId] UNIQUEIDENTIFIER NOT NULL,
[CipherId] UNIQUEIDENTIFIER NOT NULL, [CipherId] UNIQUEIDENTIFIER NOT NULL,
[Key] VARCHAR(MAX) NULL, [Key] VARCHAR (MAX) NULL,
[Permissions] VARCHAR(MAX) NULL, [Permissions] VARCHAR (MAX) NULL,
[Status] TINYINT NOT NULL, [Status] TINYINT NOT NULL,
[CreationDate] DATETIME2 (7) NOT NULL, [CreationDate] DATETIME2 (7) NOT NULL,
[RevisionDate] DATETIME2 (7) NOT NULL, [RevisionDate] DATETIME2 (7) NOT NULL,
CONSTRAINT [PK_Share] PRIMARY KEY CLUSTERED ([Id] ASC), CONSTRAINT [PK_Share] PRIMARY KEY CLUSTERED ([Id] ASC),
CONSTRAINT [FK_Share_Cipher] FOREIGN KEY ([CipherId]) REFERENCES [dbo].[Cipher] ([Id]), CONSTRAINT [FK_Share_Cipher] FOREIGN KEY ([CipherId]) REFERENCES [dbo].[Cipher] ([Id]),
CONSTRAINT [FK_Share_User] FOREIGN KEY ([UserId]) REFERENCES [dbo].[User] ([Id]) CONSTRAINT [FK_Share_User] FOREIGN KEY ([UserId]) REFERENCES [dbo].[User] ([Id])

View File

@ -3,4 +3,4 @@ AS
SELECT SELECT
* *
FROM FROM
[dbo].[Share] [dbo].[Share]