0bc3ef5014
git-svn-id: http://svn.redmine.org/redmine/trunk@12488 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
182 B
Ruby
10 lines
182 B
Ruby
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
|