I am getting the following error while running rake db:migrate:
ArgumentError: Unknown key: :order. Valid keys are: :class_name, :anonymous_class, :foreign_key, :validate, :autosave, :table_name, :before_add, :after_add, :before_remove, :after_remove, :extend, :primary_key, :dependent, :as, :through, :source, :source_type, :inverse_of, :counter_cache, :join_table, :foreign_type
This is the model where I am getting error:
class Report < ActiveRecord::Base
belongs_to :user
has_many :icons, :order => 'position_id ASC' #showing error here..
has_many :photos, :dependent => :destroy
end
Please help.
has_many :icons, -> { order('position_id ASC') }
Duplicate.
has_many :icons, -> { order('position_id ASC') } #showing error here..
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With