author | Luke Hoersten <luke@hoersten.org> |
Fri, 03 Jul 2020 09:38:16 -0500 | |
changeset 110 | 83833f68dc36 |
parent 103 | 78a072bbf3c1 |
child 227 | 2e0366f2dcbe |
permissions | -rw-r--r-- |
CREATE USER {{pleroma_db_user}} WITH ENCRYPTED PASSWORD '{{pleroma_db_passwd}}'; CREATE DATABASE {{pleroma_db}} WITH OWNER {{pleroma_db_user}}; \c {{pleroma_db}}; --Extensions made by ecto.migrate that need superuser access CREATE EXTENSION IF NOT EXISTS citext; CREATE EXTENSION IF NOT EXISTS pg_trgm; CREATE EXTENSION IF NOT EXISTS "uuid-ossp";