Last Updated: February 25, 2016
·
321
· buithehoa

Set up a PostgreSQL database for a Rails Application

CREATE USER <username> WITH PASSWORD '<password>';
CREATE DATABASE <database_name> OWNER <username>;