mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-18 17:12:53 +03:00
17 lines
588 B
PL/PgSQL
17 lines
588 B
PL/PgSQL
CREATE DATABASE "default";
|
|
CREATE DATABASE hasura;
|
|
|
|
-- From: https://raw.githubusercontent.com/nhost/hasura-auth/main/docker/initdb.d/0001-create-schema.sql
|
|
\c default;
|
|
-- auth schema
|
|
CREATE SCHEMA IF NOT EXISTS auth;
|
|
-- https://github.com/hasura/graphql-engine/issues/3657
|
|
CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA public;
|
|
CREATE EXTENSION IF NOT EXISTS citext WITH SCHEMA public;
|
|
CREATE OR REPLACE FUNCTION public.set_current_timestamp_updated_at() RETURNS trigger LANGUAGE plpgsql AS $$
|
|
declare _new record;
|
|
begin _new := new;
|
|
_new."updated_at" = now();
|
|
return _new;
|
|
end;
|
|
$$; |