1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00
Files
AdministrationItDepartmens/backend/docker/postgres/init.sql
2025-01-02 00:33:01 +06:00

8 lines
220 B
SQL

-- Create the postgres superuser
CREATE USER postgres WITH PASSWORD 'postgres' SUPERUSER;
-- Create the database
CREATE DATABASE support_db;
-- Grant privileges
GRANT ALL PRIVILEGES ON DATABASE support_db TO postgres;