我的数据库.yml
development:
adapter: mysql2
encoding: utf8
reconnect: false
database: organic_tomatoes_development
pool: 5
username: root
password: password
test:
adapter: mysql2
encoding: utf8
reconnect: false
database: organic_tomatoes_test
pool: 5
username: root
password: password
我在heroku上部署了我的站点。当我跑的时候 heroku run rake db:migrate
它给出了一个错误
ActiveRecord::AdapterNotSpecified: 'production' database is not configured. Available: ["development", "test"]
如何解决此错误?
4条答案
按热度按时间icnyk63a1#
你能试试这个吗?
91zkwejq2#
在database.yml中创建生产条目
oxf4rvwz3#
根据共享的描述,您只指定了开发和测试环境,还需要添加生产环境设置
但除此之外,您还需要添加cleardb作为使用mysql db的附加组件。
单击显示配置变量并复制cleardb\u数据库\u url值。
mysql://xx@x.cleardb.net/xx?reconnect=true.
在@符号之后的所有内容,直到/是db\u主机
之后/之前的一切?是数据库
//until:后面的字符串是db\u用户名
和@之间的字符串是db\u密码
cnjp1d6j4#
我今天早上遇到了这个问题,解决办法是
RAILS_ENV
运行命令前的变量'