jarvisx17 commited on
Commit
90fa3bc
1 Parent(s): 8544e5e

Create init.sql

Browse files
Files changed (1) hide show
  1. init.sql +3 -0
init.sql ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ CREATE DATABASE mydatabase;
2
+ CREATE USER myuser WITH ENCRYPTED PASSWORD 'mypassword';
3
+ GRANT ALL PRIVILEGES ON DATABASE mydatabase TO myuser;