mirror of
https://git.youjo.love/youjo/youjo-be.git
synced 2025-01-19 18:56:08 +01:00
7 lines
304 B
Elixir
7 lines
304 B
Elixir
CREATE USER pleroma WITH ENCRYPTED PASSWORD '<%= dbpass %>';
|
|
CREATE DATABASE pleroma_dev OWNER pleroma;
|
|
\c pleroma_dev;
|
|
--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";
|