To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / db / migrate / 20090614091200_fix_messages_sticky_null.rb @ 442:753f1380d6bc

History | View | Annotate | Download (176 Bytes)

1
class FixMessagesStickyNull < ActiveRecord::Migration
2
  def self.up
3
    Message.update_all('sticky = 0', 'sticky IS NULL')
4
  end
5

    
6
  def self.down
7
    # nothing to do
8
  end
9
end