Class: SQL::TableCreator::Column

Inherits:
Object
  • Object
show all
Defined in:
lib/dm-migrations/sql/table_creator.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(adapter, name, type, opts = {}) ⇒ Column

Returns a new instance of Column.



56
57
58
59
60
61
# File 'lib/dm-migrations/sql/table_creator.rb', line 56

def initialize(adapter, name, type, opts = {})
  @adapter = adapter
  @name = name.to_s
  @opts = opts
  @type = build_type(type)
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



54
55
56
# File 'lib/dm-migrations/sql/table_creator.rb', line 54

def name
  @name
end

#typeObject

Returns the value of attribute type.



54
55
56
# File 'lib/dm-migrations/sql/table_creator.rb', line 54

def type
  @type
end

Instance Method Details

#to_sqlObject



63
64
65
# File 'lib/dm-migrations/sql/table_creator.rb', line 63

def to_sql
  type
end