redmine/db/migrate/20091225164732_remove_enumerations_opt.rb
Jean-Philippe Lang 2d1866d966 Merged rails-4.1 branch (#14534).
git-svn-id: http://svn.redmine.org/redmine/trunk@13482 e93f8b46-1217-0410-a6f0-8f06a7374b81
2014-10-22 17:37:16 +00:00

13 rindas
460 B
Ruby

class RemoveEnumerationsOpt < ActiveRecord::Migration
def self.up
remove_column :enumerations, :opt
end
def self.down
add_column :enumerations, :opt, :string, :limit => 4, :default => '', :null => false
Enumeration.where("type = 'IssuePriority'").update_all("opt = 'IPRI'")
Enumeration.where("type = 'DocumentCategory'").update_all("opt = 'DCAT'")
Enumeration.where("type = 'TimeEntryActivity'").update_all("opt = 'ACTI'")
end
end