1
0
mirror of https://github.com/bitwarden/server synced 2025-12-21 18:53:41 +00:00
Files
server/src/Sql/PostgreSQL/Views/organization_user_view.sql
Papina 79ffda0377 #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
2019-09-12 07:59:07 -04:00

6 lines
81 B
SQL

CREATE VIEW organization_user_view
AS
SELECT
*
FROM
organization_user;