Implementation of the user port for JPA processing.

This commit is contained in:
Florian THIERRY
2023-11-30 17:54:01 +01:00
parent cb07b71a88
commit 2bb46499bc
11 changed files with 183 additions and 3 deletions

View File

@@ -1 +1,12 @@
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
\c sportshub_db
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
CREATE USER sportshub_user
WITH PASSWORD 'password'
NOCREATEDB;
GRANT SELECT, INSERT, UPDATE, DELETE
ON ALL TABLES
IN SCHEMA public
TO sportshub_user;