summaryrefslogtreecommitdiffstats
path: root/db/migrate/20090614091200_fix_messages_sticky_null.rb
blob: cbe741732ec23089a0303dd6e2d58070e124fbfa (plain)
1
2
3
4
5
6
7
8
9
class FixMessagesStickyNull < ActiveRecord::Migration
  def self.up
    Message.update_all('sticky = 0', 'sticky IS NULL')
  end

  def self.down
    # nothing to do
  end
end