Class: ActiveRecord::ConnectionAdapters::AlterTable
- Inherits:
-
Object
- Object
- ActiveRecord::ConnectionAdapters::AlterTable
- Defined in:
- lib/active_record/connection_adapters/abstract/schema_definitions.rb
Overview
:nodoc:
Direct Known Subclasses
Instance Attribute Summary collapse
-
#adds ⇒ Object
readonly
Returns the value of attribute adds.
-
#check_constraint_adds ⇒ Object
readonly
Returns the value of attribute check_constraint_adds.
-
#check_constraint_drops ⇒ Object
readonly
Returns the value of attribute check_constraint_drops.
-
#foreign_key_adds ⇒ Object
readonly
Returns the value of attribute foreign_key_adds.
-
#foreign_key_drops ⇒ Object
readonly
Returns the value of attribute foreign_key_drops.
Instance Method Summary collapse
- #add_check_constraint(expression, options) ⇒ Object
- #add_column(name, type, **options) ⇒ Object
- #add_foreign_key(to_table, options) ⇒ Object
- #drop_check_constraint(constraint_name) ⇒ Object
- #drop_foreign_key(name) ⇒ Object
-
#initialize(td) ⇒ AlterTable
constructor
A new instance of AlterTable.
- #name ⇒ Object
Constructor Details
#initialize(td) ⇒ AlterTable
Returns a new instance of AlterTable.
539 540 541 542 543 544 545 546 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 539 def initialize(td) @td = td @adds = [] @foreign_key_adds = [] @foreign_key_drops = [] @check_constraint_adds = [] @check_constraint_drops = [] end |
Instance Attribute Details
#adds ⇒ Object (readonly)
Returns the value of attribute adds.
535 536 537 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 535 def adds @adds end |
#check_constraint_adds ⇒ Object (readonly)
Returns the value of attribute check_constraint_adds.
537 538 539 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 537 def check_constraint_adds @check_constraint_adds end |
#check_constraint_drops ⇒ Object (readonly)
Returns the value of attribute check_constraint_drops.
537 538 539 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 537 def check_constraint_drops @check_constraint_drops end |
#foreign_key_adds ⇒ Object (readonly)
Returns the value of attribute foreign_key_adds.
536 537 538 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 536 def foreign_key_adds @foreign_key_adds end |
#foreign_key_drops ⇒ Object (readonly)
Returns the value of attribute foreign_key_drops.
536 537 538 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 536 def foreign_key_drops @foreign_key_drops end |
Instance Method Details
#add_check_constraint(expression, options) ⇒ Object
558 559 560 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 558 def add_check_constraint(expression, ) @check_constraint_adds << @td.new_check_constraint_definition(expression, ) end |
#add_column(name, type, **options) ⇒ Object
566 567 568 569 570 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 566 def add_column(name, type, **) name = name.to_s type = type.to_sym @adds << AddColumnDefinition.new(@td.new_column_definition(name, type, **)) end |
#add_foreign_key(to_table, options) ⇒ Object
550 551 552 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 550 def add_foreign_key(to_table, ) @foreign_key_adds << @td.new_foreign_key_definition(to_table, ) end |
#drop_check_constraint(constraint_name) ⇒ Object
562 563 564 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 562 def drop_check_constraint(constraint_name) @check_constraint_drops << constraint_name end |
#drop_foreign_key(name) ⇒ Object
554 555 556 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 554 def drop_foreign_key(name) @foreign_key_drops << name end |
#name ⇒ Object
548 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 548 def name; @td.name; end |