ee7c25c767
* Move the old dev docker files to support/docker/janitor * Create new Docker dev image
6 lines
200 B
SQL
6 lines
200 B
SQL
create database peertube_dev;
|
|
create user peertube password 'peertube';
|
|
grant all privileges on database peertube_dev to peertube;
|
|
\c peertube_dev
|
|
CREATE EXTENSION pg_trgm;
|
|
CREATE EXTENSION unaccent;
|