diff options
author | rinpatch <rinpatch@sdf.org> | 2019-06-21 19:30:25 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-06-21 19:54:04 +0300 |
commit | e76115989a0867d5a37a869b560153c2e7c060fd (patch) | |
tree | 1fc7f2098a560d2ddf304148d51ae149ea3a0048 /lib/mix/tasks/pleroma/sample_psql.eex | |
parent | 2437f5128407bbcdfc152ea3f008d7eecc1728f2 (diff) | |
download | pleroma-e76115989a0867d5a37a869b560153c2e7c060fd.tar.gz |
Move config templates to priv so they can be found in releases
Diffstat (limited to 'lib/mix/tasks/pleroma/sample_psql.eex')
-rw-r--r-- | lib/mix/tasks/pleroma/sample_psql.eex | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/mix/tasks/pleroma/sample_psql.eex b/lib/mix/tasks/pleroma/sample_psql.eex deleted file mode 100644 index f0ac05e57..000000000 --- a/lib/mix/tasks/pleroma/sample_psql.eex +++ /dev/null @@ -1,7 +0,0 @@ -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"; |