Support RUM indexes in the config generator

This commit is contained in:
rinpatch 2019-06-22 12:54:16 +03:00
commit 3ac5ecbac1
3 changed files with 20 additions and 2 deletions

View file

@ -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 %>