Skip to content

Instantly share code, notes, and snippets.

@Sacristan
Created June 10, 2014 20:06
Show Gist options
  • Save Sacristan/580502165dac6471a47f to your computer and use it in GitHub Desktop.
Save Sacristan/580502165dac6471a47f to your computer and use it in GitHub Desktop.
Rails create posgres user -> superuser and login
sudo su postgres -c psql
postgres=# CREATE ROLE <username> SUPERUSER LOGIN;
postgres=# \q
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment