view .svn/pristine/8b/8be5515353af5348184307d5162405a9424a7697.svn-base @ 1227:eb168c1e9553 live

Show maximum of 10 colleagues
author Chris Cannam
date Tue, 12 Mar 2013 15:45:41 +0000
parents cbb26bc654de
children
line wrap: on
line source
class FixMessagesStickyNull < ActiveRecord::Migration
  def self.up
    Message.update_all('sticky = 0', 'sticky IS NULL')
  end

  def self.down
    # nothing to do
  end
end