blob: 1148c07261dae4988aeff3567173d0fecbd8a700 (
plain)
1
2
3
4
5
6
7
8
9
|
class AddCustomFieldsDefaultValue < ActiveRecord::Migration[4.2]
def self.up
add_column :custom_fields, :default_value, :text
end
def self.down
remove_column :custom_fields, :default_value
end
end
|