django-orchestra-test/examples/createdb.sql
Cayo Puigdefabregas e5ca77f018 fixing createdb
2021-02-12 16:18:51 +01:00

5 lines
164 B
SQL

create database orchestra;
CREATE USER orchestra WITH PASSWORD 'orchestra';
GRANT ALL PRIVILEGES ON DATABASE orchestra TO orchestra;
ALTER ROLE orchestra CREATEDB;