Files
kotlin-springboot-gradle-st…/imagora-infrastructure/sql/000_database_initialisation.sql
Florian THIERRY af253dcbe3 Initial commit.
2025-11-14 14:22:56 +01:00

10 lines
233 B
SQL

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;