1
0
mirror of https://github.com/bitwarden/server synced 2026-01-08 03:23:20 +00:00

Added Sql project with database schema. Added SqlServer repositories for Site, Folder, and User (Cipher still TODO). Switched DI in Startup to SqlServer repos.

This commit is contained in:
Kyle Spearrin
2016-02-06 01:18:25 -05:00
parent 78fcad8c69
commit 13f85bf2f1
37 changed files with 935 additions and 11 deletions

View File

@@ -0,0 +1,6 @@
CREATE VIEW [dbo].[FolderView]
AS
SELECT
*
FROM
[dbo].[Folder]

View File

@@ -0,0 +1,6 @@
CREATE VIEW [dbo].[SiteView]
AS
SELECT
*
FROM
[dbo].[Site]

View File

@@ -0,0 +1,6 @@
CREATE VIEW [dbo].[UserView]
AS
SELECT
*
FROM
[dbo].[User]