Heroku MySQL 重音问题
有没有办法改变 Heroku 的 MySQL ruby gem 的版本?
Is there any way to change the Heroku's MySQL ruby gem's version?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法改变 Heroku 的 MySQL ruby gem 的版本?
Is there any way to change the Heroku's MySQL ruby gem's version?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
AFAIK,Heroku 不使用 MySQL 作为数据库引擎。
他们使用 PostgreSQL。
以下是他们的常见问题解答的摘录:
AFAIK, Heroku doesn't use MySQL as their database engine.
They use PostgreSQL.
Here's a snippet from their FAQ:
根据已安装的 gems 列表,它们的版本为 2.7。
如果您使用的是 Rails3,那么只需将
gem 'mysql'
粘贴到您的 Gemfile 中即可。你为什么使用 mysql gem?是用于 Amazon RDS 附加组件还是其他什么?
according to the list of installed gems they are at version 2.7.
If you are on rails3, then just stick
gem 'mysql'
in your Gemfile.Why are you using mysql gem? Is it for the Amazon RDS add-on or something?
如果使用 Rails 2.3.* 那么你可以在 .gems 文件中指定你需要的 gem 版本。
如果使用 Rails 3,则使用 Gemfile。
If using rails 2.3.* then you can specify the gem version you need in the .gems file.
If using rails 3 then use the Gemfile.