20090401221305_update_enumerations_to_sti.rb
11 lines
| 347 B
| text/x-ruby
|
RubyLexer
|
r2677 | class UpdateEnumerationsToSti < ActiveRecord::Migration | ||
def self.up | ||||
|
r12213 | Enumeration.where("opt = 'IPRI'").update_all("type = 'IssuePriority'") | ||
Enumeration.where("opt = 'DCAT'").update_all("type = 'DocumentCategory'") | ||||
Enumeration.where("opt = 'ACTI'").update_all("type = 'TimeEntryActivity'") | ||||
|
r2677 | end | ||
def self.down | ||||
# no-op | ||||
end | ||||
end | ||||