allow limiting video-comments rss feeds to an account or video channel
[oweals/peertube.git] / support / docker / dev / setup_postgres.sql
1 create database peertube_dev;
2 create user peertube password 'peertube';
3 grant all privileges on database peertube_dev to peertube;
4 \c peertube_dev
5 CREATE EXTENSION pg_trgm;
6 CREATE EXTENSION unaccent;