diff options
author | rinpatch <rinpatch@sdf.org> | 2019-06-22 12:54:16 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-06-22 12:54:16 +0300 |
commit | 3ac5ecbac1e00c6f5b59dfd8c120875e22080a09 (patch) | |
tree | 338f71f49ec6948c2bd083418dc1bbb306d71c0b /priv/templates/sample_psql.eex | |
parent | 8dbcff2fed0bf6fb20b70388974fcbe9d3a0aeee (diff) | |
download | pleroma-3ac5ecbac1e00c6f5b59dfd8c120875e22080a09.tar.gz |
Support RUM indexes in the config generator
Diffstat (limited to 'priv/templates/sample_psql.eex')
-rw-r--r-- | priv/templates/sample_psql.eex | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/priv/templates/sample_psql.eex b/priv/templates/sample_psql.eex index f0ac05e57..627839a68 100644 --- a/priv/templates/sample_psql.eex +++ b/priv/templates/sample_psql.eex @@ -5,3 +5,8 @@ CREATE DATABASE <%= dbname %> OWNER <%= dbuser %>; 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 %> |