|
本帖最后由 jieforest 于 2013-2-6 09:16 编辑
Thankfully, switching Rails to PostgreSQL is very simple. In our Gemfile, there’s a line that looks like this:Change that line to this:We now must install this gem locally, in order to update Gemfile.lock. We do this by running:
And we commit:- git add .
- git commit -m 'updated Gemfile with Postgres'
复制代码 |
|