Files
dfops-rest-service/init_postgresql_db/ddl-postgresql.sql
2023-06-11 00:29:45 +03:00

4 lines
116 B
SQL

CREATE DATABASE test;
CREATE USER "user" WITH password 'password';
GRANT ALL PRIVILEGES ON DATABASE test TO "user";