mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-22 07:52:43 +00:00
9e3df495dc
⭐️ This is the way.
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
8 lines
263 B
Elixir
8 lines
263 B
Elixir
CREATE USER <%= database_username %> WITH ENCRYPTED PASSWORD '<%= database_password %>';
|
|
CREATE DATABASE <%= database_name %> OWNER <%= database_username %>;
|
|
|
|
\c <%= database_name %>
|
|
|
|
CREATE EXTENSION postgis;
|
|
CREATE EXTENSION pg_trgm;
|
|
CREATE EXTENSION unaccent;
|