You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20090401221305_update_enumerations_to_sti.rb 352B

1234567891011
  1. class UpdateEnumerationsToSti < ActiveRecord::Migration[4.2]
  2. def self.up
  3. Enumeration.where("opt = 'IPRI'").update_all("type = 'IssuePriority'")
  4. Enumeration.where("opt = 'DCAT'").update_all("type = 'DocumentCategory'")
  5. Enumeration.where("opt = 'ACTI'").update_all("type = 'TimeEntryActivity'")
  6. end
  7. def self.down
  8. # no-op
  9. end
  10. end