To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / 0b / 0b5c22ea9dff7e86156bbe2c3f813307405010ea.svn-base @ 912:5e80956cc792
History | View | Annotate | Download (329 Bytes)
| 1 | 909:cbb26bc654de | Chris | 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 |