20131210180802_add_custom_fields_description.rb
9 lines
| 194 B
| text/x-ruby
|
RubyLexer
|
r12125 | class AddCustomFieldsDescription < ActiveRecord::Migration | ||
def up | ||||
add_column :custom_fields, :description, :text | ||||
end | ||||
def down | ||||
remove_column :custom_fields, :description | ||||
end | ||||
end | ||||