module Switchman::ActiveRecord::TableDefinition

Public Instance Methods

column(name, type, limit: nil, **) click to toggle source
Calls superclass method
# File lib/switchman/active_record/table_definition.rb, line 6
def column(name, type, limit: nil, **)
  Engine.foreign_key_check(name, type, limit: limit)
  super
end