class ActiveRecord::ConnectionAdapters::NullDBAdapter::TableDefinition

Attributes

name[RW]

Public Instance Methods

create_column_definition(name, type, options) click to toggle source

Avoid check for option validity

# File lib/active_record/connection_adapters/nulldb_adapter/table_definition.rb, line 18
def create_column_definition(name, type, options)
  ActiveRecord::ConnectionAdapters::ColumnDefinition.new(name, type, options)
end