mirror of
https://github.com/bitwarden/server
synced 2025-12-29 22:54:00 +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
This commit is contained in:
5
src/Sql/PostgreSQL/Schema/bitwarden.sql
Normal file
5
src/Sql/PostgreSQL/Schema/bitwarden.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
DROP SCHEMA bitwarden cascade;
|
||||
|
||||
CREATE SCHEMA bitwarden AUTHORIZATION bitwarden;
|
||||
|
||||
ALTER ROLE bitwarden SET search_path TO bitwarden;
|
||||
Reference in New Issue
Block a user