Created
February 22, 2025 12:42
-
-
Save Himura2la/e47c90a0f709c280cedbbd25e2101ad7 to your computer and use it in GitHub Desktop.
Create table and user in PostgreSQL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE USER nyarden; | |
CREATE DATABASE nyarden; | |
GRANT ALL PRIVILEGES ON DATABASE nyarden TO nyarden; | |
ALTER USER nyarden WITH PASSWORD ''; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment