Skip to content

Commit ddb19f8

Browse files
committed
init: Workastra Platform
0 parents  commit ddb19f8

17 files changed

Lines changed: 4875 additions & 0 deletions

File tree

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
CREATE DATABASE keycloak_db;
2+
3+
CREATE USER keycloak_user WITH ENCRYPTED PASSWORD 'keycloak_password';
4+
5+
GRANT ALL PRIVILEGES ON DATABASE keycloak_db TO keycloak_user;
6+
7+
\c keycloak_db
8+
9+
GRANT USAGE ON SCHEMA public TO keycloak_user;
10+
GRANT CREATE ON SCHEMA public TO keycloak_user;
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
CREATE DATABASE workastra_db;
2+
3+
CREATE USER workastra_user WITH ENCRYPTED PASSWORD 'workastra_password';
4+
5+
GRANT ALL PRIVILEGES ON DATABASE workastra_db TO workastra_user;
6+
7+
\c workastra_db
8+
9+
GRANT USAGE ON SCHEMA public TO workastra_user;
10+
GRANT CREATE ON SCHEMA public TO workastra_user;

0 commit comments

Comments
 (0)