Class: DeclareSchema::SchemaChange::ColumnRemove
- Inherits:
-
ColumnAdd
show all
- Defined in:
- lib/declare_schema/schema_change/column_remove.rb
Instance Method Summary
collapse
Methods inherited from ColumnAdd
#initialize
Methods inherited from Base
#down, format_options, #up
Instance Method Details
#column_add_down_command ⇒ Object
9
|
# File 'lib/declare_schema/schema_change/column_remove.rb', line 9
alias column_add_down_command down_command
|
#column_add_up_command ⇒ Object
8
|
# File 'lib/declare_schema/schema_change/column_remove.rb', line 8
alias column_add_up_command up_command
|
#down_command ⇒ Object
15
16
17
|
# File 'lib/declare_schema/schema_change/column_remove.rb', line 15
def down_command
column_add_up_command
end
|
#up_command ⇒ Object
11
12
13
|
# File 'lib/declare_schema/schema_change/column_remove.rb', line 11
def up_command
column_add_down_command
end
|