新品価格 |
Directly inheriting from ActiveRecord::Migration is not supported. Please specify the Rails release the migration was written for:
のエラーが出てマイグレーションコマンド発行できないことに気づいたので直し方
・コードの変更
バージョンを書く必要がある模様
https://qiita.com/ISLA/items/62ffa6d30563c90a090b
#旧 ActiveRecord::Migration #新 ActiveRecord::Migration[4.2]
・コマンド
rbenv exec bundle exec rails db:migrate RAILS_ENV=production
これで動くようになりましたとさ
通常使うコードじゃないので、実際に使うときになって気づきました・・・