To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 8c / 8cc5de5e640ab07aad0e53b894b271a11458548a.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (276 Bytes)

1
class FixUsersCustomValues < ActiveRecord::Migration
2
  def self.up
3
    CustomValue.update_all("customized_type = 'Principal'", "customized_type = 'User'")
4
  end
5

    
6
  def self.down
7
    CustomValue.update_all("customized_type = 'User'", "customized_type = 'Principal'")
8
  end
9
end