1 2 3 4 5 6 7 8 9
class FixMessagesStickyNull < ActiveRecord::Migration def self.up Message.where('sticky IS NULL').update_all('sticky = 0') end def self.down # nothing to do end end