mirror of
https://github.com/bitwarden/server
synced 2025-12-24 12:13:17 +00:00
* 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
7 lines
55 B
SQL
7 lines
55 B
SQL
CREATE VIEW user_view
|
|
AS
|
|
SELECT
|
|
*
|
|
FROM
|
|
"user";
|