Exception: ActiveRecord::UnknownPrimaryKey

Inherits:
ActiveRecordError show all
Defined in:
activerecord/lib/active_record/errors.rb

Overview

Raised when a primary key is needed, but not specified in the schema or model.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(model) ⇒ UnknownPrimaryKey

Returns a new instance of UnknownPrimaryKey.



207
208
209
210
# File 'activerecord/lib/active_record/errors.rb', line 207

def initialize(model)
  super("Unknown primary key for table #{model.table_name} in model #{model}.")
  @model = model
end

Instance Attribute Details

#modelObject (readonly)

Returns the value of attribute model



205
206
207
# File 'activerecord/lib/active_record/errors.rb', line 205

def model
  @model
end