Add scripts to create database and user libreplan

This commit is contained in:
Juan A. Suarez Romero 2012-03-14 10:08:10 +01:00 committed by Jacobo Aragunde Pérez
parent cb15c257a0
commit 7d366b955c
2 changed files with 3 additions and 0 deletions

View file

@ -0,0 +1 @@
CREATE DATABASE libreplan;

View file

@ -0,0 +1,2 @@
CREATE USER libreplan WITH PASSWORD 'libreplan';
GRANT ALL PRIVILEGES ON DATABASE libreplan TO libreplan;