-
Steffen Köhler authoreda391c9bf
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
init.sql 385 B
--CREATE USER folio with createrole encrypted password 'myVerySecret';
CREATE USER folio with superuser encrypted password 'myVerySecret';
CREATE DATABASE folio_modules with owner = folio;
\c folio_modules
CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA public;
CREATE EXTENSION IF NOT EXISTS unaccent WITH SCHEMA public;
CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA public;