5 lines
202 B
MySQL
5 lines
202 B
MySQL
|
|
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;
|