mirror of
https://github.com/redmine/redmine.git
synced 2026-01-10 17:43:00 +01:00
10 lines
210 B
Ruby
10 lines
210 B
Ruby
|
|
class AllowNullVersionEffectiveDate < ActiveRecord::Migration
|
||
|
|
def self.up
|
||
|
|
change_column :versions, :effective_date, :date, :default => nil
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.down
|
||
|
|
raise IrreversibleMigration
|
||
|
|
end
|
||
|
|
end
|