Skip to content

Instantly share code, notes, and snippets.

@Himura2la
Created February 22, 2025 12:42
Show Gist options
  • Save Himura2la/e47c90a0f709c280cedbbd25e2101ad7 to your computer and use it in GitHub Desktop.
Save Himura2la/e47c90a0f709c280cedbbd25e2101ad7 to your computer and use it in GitHub Desktop.
Create table and user in PostgreSQL
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