Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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