Missing migration for r1090.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1091 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2008-01-20 23:38:55 +00:00
parent d6bfb7fa4d
commit c65ab7c0f2
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,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