Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jarvisx17
/
postgres
like
0
Runtime error
App
Files
Files
Community
90fa3bc
postgres
/
init.sql
jarvisx17
Create init.sql
90fa3bc
verified
4 months ago
raw
Copy download link
history
blame
Safe
139 Bytes
CREATE
DATABASE mydatabase;
CREATE
USER
myuser
WITH
ENCRYPTED PASSWORD
'mypassword'
;
GRANT
ALL
PRIVILEGES
ON
DATABASE mydatabase
TO
myuser;