method

new_column_definition

rails latest stable - Class: ActiveRecord::ConnectionAdapters::PostgreSQL::TableDefinition

Method not available on this version

This method is only available on newer versions. The first available version (v4.2.1) is shown here.

new_column_definition(name, type, options)
public

No documentation available.

# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 134
        def new_column_definition(name, type, options) # :nodoc:
          column = super
          column.array = options[:array]
          column
        end