1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-11-11 05:10:49 +01:00
pleroma/priv/templates/sample_psql.eex
2019-06-22 12:54:16 +03:00

13 lines
397 B
Elixir

CREATE USER <%= dbuser %> WITH ENCRYPTED PASSWORD '<%= dbpass %>';
CREATE DATABASE <%= dbname %> OWNER <%= dbuser %>;
\c <%= dbname %>;
--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";
<%= if rum_enabled do
"CREATE EXTENSION IF NOT EXISTS rum;"
else
""
end %>