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