a2626bbccf
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1140 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
225 B
Ruby
10 lines
225 B
Ruby
class AllowNullVersionEffectiveDate < ActiveRecord::Migration
|
|
def self.up
|
|
change_column :versions, :effective_date, :date, :default => nil, :null => true
|
|
end
|
|
|
|
def self.down
|
|
raise IrreversibleMigration
|
|
end
|
|
end
|