ability to set and reset avatar, profile banner and backgroud in Mastodon API
[akkoma] / lib / mix / tasks / pleroma / sample_psql.eex
1 CREATE USER <%= dbuser %> WITH ENCRYPTED PASSWORD '<%= dbpass %>';
2 CREATE DATABASE <%= dbname %> OWNER <%= dbuser %>;
3 \c <%= dbname %>;
4 --Extensions made by ecto.migrate that need superuser access
5 CREATE EXTENSION IF NOT EXISTS citext;
6 CREATE EXTENSION IF NOT EXISTS pg_trgm;
7 CREATE EXTENSION IF NOT EXISTS "uuid-ossp";