Initial commit.
This commit is contained in:
10
imagora-infrastructure/sql/000_database_initialisation.sql
Normal file
10
imagora-infrastructure/sql/000_database_initialisation.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
|
||||
|
||||
CREATE USER imagora_user
|
||||
WITH PASSWORD 'P@ssword!'
|
||||
NOCREATEDB;
|
||||
|
||||
GRANT SELECT, INSERT, UPDATE, DELETE
|
||||
ON ALL TABLES
|
||||
IN SCHEMA public
|
||||
TO imagora_user;
|
||||
Reference in New Issue
Block a user