Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jarvisx17
/
postgres
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
jarvisx17
commited on
Aug 6, 2024
Commit
90fa3bc
·
verified
·
1 Parent(s):
8544e5e
Create init.sql
Browse files
Files changed (1)
hide
show
init.sql
+3
-0
init.sql
ADDED
Viewed
@@ -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;