You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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;
|