##// END OF EJS Templates
Updated CHANGELOG for 2.4.4 and 2.5.0....
Updated CHANGELOG for 2.4.4 and 2.5.0. git-svn-id: http://svn.redmine.org/redmine/trunk@12948 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r12213:0bc3ef5014dd
r12673:8a2413f3b718
Show More
20090614091200_fix_messages_sticky_null.rb
9 lines | 182 B | text/x-ruby | RubyLexer
/ db / migrate / 20090614091200_fix_messages_sticky_null.rb
Jean-Philippe Lang
Fixed: editing a message may cause sticky attribute to be NULL (#3356)....
r2687 class FixMessagesStickyNull < ActiveRecord::Migration
def self.up
Toshi MARUYAMA
Rails4: replace deprecated Relation#update_all at db migrations...
r12213 Message.where('sticky IS NULL').update_all('sticky = 0')
Jean-Philippe Lang
Fixed: editing a message may cause sticky attribute to be NULL (#3356)....
r2687 end
def self.down
# nothing to do
end
end