##// END OF EJS Templates
Typo in migration 97 name (#1929)....
Typo in migration 97 name (#1929). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1896 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r913:29b3614bcb75
r1894:edf6757a751b
Show More
083_add_messages_sticky.rb
9 lines | 193 B | text/x-ruby | RubyLexer
/ db / migrate / 083_add_messages_sticky.rb
class AddMessagesSticky < ActiveRecord::Migration
def self.up
add_column :messages, :sticky, :integer, :default => 0
end
def self.down
remove_column :messages, :sticky
end
end