init
This commit is contained in:
6
.docker-postgres-init/01_init.sql
Normal file
6
.docker-postgres-init/01_init.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
-- Note: It's highly recommended to use more secure passwords
|
||||
|
||||
-- create db/user for application data/drizzle orm
|
||||
CREATE USER app_svc WITH PASSWORD 'password';
|
||||
CREATE DATABASE app_db;
|
||||
GRANT ALL PRIVILEGES ON DATABASE app_db TO app_svc;
|
||||
Reference in New Issue
Block a user