mirror of
https://github.com/bitwarden/server.git
synced 2025-05-20 11:04:31 -05: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 * Rename User.sql to user.sql * PostgreSQL views, snake_case column fix for user_create, rename of users.sql file to lowercase
6 lines
57 B
SQL
6 lines
57 B
SQL
CREATE VIEW event_view
|
|
AS
|
|
SELECT
|
|
*
|
|
FROM
|
|
event; |