Skip to content

Instantly share code, notes, and snippets.

@crohr
Last active August 29, 2015 14:03
Show Gist options
  • Save crohr/9540fb106f3f723abfe3 to your computer and use it in GitHub Desktop.
Save crohr/9540fb106f3f723abfe3 to your computer and use it in GitHub Desktop.
postgres cheatsheet

Give ownership rights on database to role:

echo 'ALTER DATABASE "voice-messaging-api" OWNER TO "voicemsg"' | sudo su - postgres -c psql

Give CREATEDB rights to role:

echo 'ALTER ROLE "voicemsg" CREATEDB' | sudo su - postgres -c psql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment