You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bundle exec rake db:migrate
rake aborted!
StandardError: An error has occurred, this and all later migrations canceled:
Directly inheriting from ActiveRecord::Migration is not supported. Please specify the Rails release the migration was written for:
Fix is easy by manually modifying the generated migration from class CreateElasticProductState < ActiveRecord::Migration
to class CreateElasticProductState < ActiveRecord::Migration[4.2]
The text was updated successfully, but these errors were encountered:
Fix is easy by manually modifying the generated migration from
class CreateElasticProductState < ActiveRecord::Migration
to
class CreateElasticProductState < ActiveRecord::Migration[4.2]
The text was updated successfully, but these errors were encountered: