API - remove intermediate directory and rename api directory
This commit is contained in:
9
db/create.sql
Normal file
9
db/create.sql
Normal file
@ -0,0 +1,9 @@
|
||||
DROP DATABASE IF EXISTS fittrackee;
|
||||
DROP DATABASE IF EXISTS fittrackee_test;
|
||||
DROP USER IF EXISTS fittrackee;
|
||||
|
||||
CREATE DATABASE fittrackee;
|
||||
CREATE DATABASE fittrackee_test;
|
||||
CREATE USER fittrackee WITH PASSWORD 'fittrackee';
|
||||
GRANT ALL PRIVILEGES ON DATABASE fittrackee TO fittrackee;
|
||||
GRANT ALL PRIVILEGES ON DATABASE fittrackee_test TO fittrackee;
|
Reference in New Issue
Block a user