5 lines
237 B
SQL
5 lines
237 B
SQL
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;
|