fix(teedy): add script for init database

This commit is contained in:
Khaïs COLIN 2024-08-25 13:07:29 +02:00
parent 76a93921a4
commit 36f0b45578

4
teedy-initdb.sql Normal file
View file

@ -0,0 +1,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;