mirror of
https://github.com/YunoHost-Apps/pleroma_ynh.git
synced 2024-09-03 20:15:59 +02:00
6 lines
265 B
Text
6 lines
265 B
Text
CREATE USER __DB_NAME__ WITH ENCRYPTED PASSWORD '__DB_PWD__';
|
|
CREATE DATABASE __DB_NAME__ OWNER __DB_NAME__;
|
|
\c __DB_NAME__;
|
|
--Extensions made by ecto.migrate that need superuser access
|
|
CREATE EXTENSION IF NOT EXISTS citext;
|
|
CREATE EXTENSION IF NOT EXISTS pg_trgm;
|