mirror of
https://github.com/bitwarden/server
synced 2026-01-05 18:13:31 +00:00
new database schema for ciphers and history. dropped old site and folder tables.
This commit is contained in:
6
src/Sql/dbo/Views/CipherView.sql
Normal file
6
src/Sql/dbo/Views/CipherView.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
CREATE VIEW [dbo].[CipherView]
|
||||
AS
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
[dbo].[Cipher]
|
||||
@@ -1,6 +0,0 @@
|
||||
CREATE VIEW [dbo].[FolderView]
|
||||
AS
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
[dbo].[Folder]
|
||||
6
src/Sql/dbo/Views/HistoryView.sql
Normal file
6
src/Sql/dbo/Views/HistoryView.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
CREATE VIEW [dbo].[HistoryView]
|
||||
AS
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
[dbo].[History]
|
||||
@@ -1,6 +0,0 @@
|
||||
CREATE VIEW [dbo].[SiteView]
|
||||
AS
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
[dbo].[Site]
|
||||
Reference in New Issue
Block a user