class Identifiable::Errors::ColumnCannotBeIdError

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/identifiable/errors.rb, line 14
def initialize
  super('The identifiable\'s column cannot be :id, since that\'s your primary key. You should create another index column in your table with a name like :public_id.')
end