While trying to run migration, it is giving bellow error
rails 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:
class CreateFriendships < ActiveRecord::Migration[4.2]
Though it can be cleared by overriding all the has_friendship migration files by inserting appropriate rails version like bellow
class CreateFriendships < ActiveRecord::Migration[5.1]
#
end
Was it missed from the gem or did I missed anything while installing gem?
Hi,
I am using
While trying to run migration, it is giving bellow error
Though it can be cleared by overriding all the
has_friendship
migration files by inserting appropriate rails version like bellowWas it missed from the gem or did I missed anything while installing gem?