issues
search
sheerun
/
rails4-bootstrap
My systematic way of making bullet-proof Rails 4 bootstrap template.
21
stars
1
forks
source link
Use PostgreSQL as default database
#5
Closed
sheerun
closed
11 years ago
sheerun
commented
11 years ago
Reasoning
After using MySQL for few years, I experienced a
lot of quirs
.
PostgreSQL is
well-supported by Rails4
, most noticeably hstore.
Heroku's preferred db is postgresql (there are mysql addons though).
SQLite is easy for set-up but using it on development and postgresql on production can lead to production-only bug.
Downsides
Currently there is no good, and free postgresql client for Mac. The ones I am aware of are pgAdmin, Navicat and PG Commander, and pgXplorer.
You usually have to edit database.yml file before using app (solved by #7)
Reasoning
Downsides