fix(teedy): forgot to create the database

This commit is contained in:
Khaïs COLIN 2024-08-25 13:14:51 +02:00
parent 36f0b45578
commit 6ad28c54bf

View file

@ -2,3 +2,4 @@ create user teedy with password 'teedy' login createdb;
create schema teedy;
grant all privileges on all tables in schema teedy to teedy;
grant all privileges on all sequences in schema teedy to teedy;
create database teedy owner teedy;