Sha256: d969fc2611103c3d1b714585eaeba3a6e20c3e01e55b2424e99d116ad8d5a6bb
Contents?: true
Size: 347 Bytes
Versions: 34
Compression:
Stored size: 347 Bytes
Contents
class UpdateEnumerationsToSti < ActiveRecord::Migration def self.up Enumeration.where("opt = 'IPRI'").update_all("type = 'IssuePriority'") Enumeration.where("opt = 'DCAT'").update_all("type = 'DocumentCategory'") Enumeration.where("opt = 'ACTI'").update_all("type = 'TimeEntryActivity'") end def self.down # no-op end end
Version data entries
34 entries across 34 versions & 1 rubygems