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

  def self.down
    # nothing to do
  end
end