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