undefined method `database_authenticatable' for #

后端 未结 5 1456
猫巷女王i
猫巷女王i 2020-12-30 22:17

I am using Active Admin gem for my small application based on Quiz. But when I execute rake db:migrate it gives me error. Following is the trace of the comm

5条回答
  •  隐瞒了意图╮
    2020-12-30 22:37

    I've run into this twice and there is a really easy solution - instead of db migrations, run this:

    heroku run rake db:create 
    # optionally with --app your_apps_name if you have multiple apps.
    

    then:

    rake db:schema:load
    

提交回复
热议问题