API: use of PostgreSQL instead of MySQL

API: use of PostgreSQL instead of MySQL
This commit is contained in:
SamR1
2018-01-07 18:11:19 +01:00
parent 81b1370b5e
commit a8faabddc3
6 changed files with 11 additions and 8 deletions

5
mpwo_api/db/mpwo.sql Normal file
View File

@ -0,0 +1,5 @@
CREATE DATABASE mpwo;
CREATE DATABASE mpwo_test;
CREATE USER mpwo WITH PASSWORD 'mpwo';
GRANT ALL PRIVILEGES ON DATABASE mpwo TO mpwo;
GRANT ALL PRIVILEGES ON DATABASE mpwo_test TO mpwo;