]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - support/docker/gitpod/setup_postgres.sql
Ensure we don't move live to object storage
[github/Chocobozzz/PeerTube.git] / support / docker / gitpod / setup_postgres.sql
CommitLineData
0cfcbae8
JK
1create database peertube_dev;
2create user peertube password 'peertube';
3grant all privileges on database peertube_dev to peertube;
4\c peertube_dev
5CREATE EXTENSION pg_trgm;
6CREATE EXTENSION unaccent;