suitepro/db/migrate/048_allow_null_version_effective_date.rb
2020-11-22 21:20:06 +01:00

9 lines
230 B
Ruby

class AllowNullVersionEffectiveDate < ActiveRecord::Migration[4.2]
def self.up
change_column :versions, :effective_date, :date, :default => nil, :null => true
end
def self.down
raise IrreversibleMigration
end
end