OSDN Git Service

50bd52010520dd481e9c746b16ff8066c27a737d
[redminele/redminele.git] / redmine / db / migrate / 20090401221305_update_enumerations_to_sti.rb
1 class UpdateEnumerationsToSti < ActiveRecord::Migration
2   def self.up
3     Enumeration.update_all("type = 'IssuePriority'", "opt = 'IPRI'")
4     Enumeration.update_all("type = 'DocumentCategory'", "opt = 'DCAT'")
5     Enumeration.update_all("type = 'TimeEntryActivity'", "opt = 'ACTI'")
6   end
7
8   def self.down
9     # no-op
10   end
11 end