1
0
mirror of https://github.com/bitwarden/server synced 2025-12-22 03:03:33 +00:00

#453 PostgreSQL - Views (#560)

* PostgreSQL initial commit of translation from SQL Server to PostgreSQL

* snake_case added.
set search path for schema.  schema qualified name no longer needed for creation and access of functions.

* Table DDL for PostgreSQL

* Rename User.sql to user.sql

* PostgreSQL views, 
snake_case column fix for user_create, 
rename of users.sql file to lowercase
This commit is contained in:
Papina
2019-09-12 21:59:07 +10:00
committed by Kyle Spearrin
parent ba6baa3caa
commit 79ffda0377
15 changed files with 110 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
CREATE VIEW cipher_view
AS
SELECT
*
FROM
cipher;