class ActiveRecord::ConnectionAdapters::PostgreSQL::TableDefinition

Private Instance Methods

create_column_definition(name, type) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 170
def create_column_definition(name, type)
  PostgreSQL::ColumnDefinition.new name, type
end