Add scripts to create database and user libreplan
This commit is contained in:
parent
cb15c257a0
commit
7d366b955c
2 changed files with 3 additions and 0 deletions
1
scripts/database/createdb.sql
Normal file
1
scripts/database/createdb.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
CREATE DATABASE libreplan;
|
||||
2
scripts/database/createuser.sql
Normal file
2
scripts/database/createuser.sql
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
CREATE USER libreplan WITH PASSWORD 'libreplan';
|
||||
GRANT ALL PRIVILEGES ON DATABASE libreplan TO libreplan;
|
||||
Loading…
Add table
Reference in a new issue