Class: ActiveRecord::ConnectionAdapters::ColumnDefinition

Inherits:
Struct
  • Object
show all
Defined in:
lib/active_record/connection_adapters/abstract/schema_definitions.rb

Overview

Abstract representation of a column definition. Instances of this type are typically created by methods in TableDefinition, and added to the columns attribute of said TableDefinition object, in order to be used for generating a number of table creation or table changing SQL statements.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#nameObject

Returns the value of attribute name

Returns:

  • (Object)

    the current value of name



50
51
52
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 50

def name
  @name
end

#optionsObject

Returns the value of attribute options

Returns:

  • (Object)

    the current value of options



50
51
52
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 50

def options
  @options
end

#sql_typeObject

Returns the value of attribute sql_type

Returns:

  • (Object)

    the current value of sql_type



50
51
52
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 50

def sql_type
  @sql_type
end

#typeObject

Returns the value of attribute type

Returns:

  • (Object)

    the current value of type



50
51
52
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 50

def type
  @type
end

Instance Method Details

#primary_key?Boolean

Returns:

  • (Boolean)


51
52
53
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 51

def primary_key?
  options[:primary_key]
end