Chris@0: class FixUsersCustomValues < ActiveRecord::Migration Chris@0: def self.up Chris@1517: CustomValue.where("customized_type = 'User'"). Chris@1517: update_all("customized_type = 'Principal'") Chris@0: end Chris@0: Chris@0: def self.down Chris@1517: CustomValue.where("customized_type = 'Principal'"). Chris@1517: update_all("customized_type = 'User'") Chris@0: end Chris@0: end