view db/migrate/083_add_messages_sticky.rb @ 1311:18052001fe11 redmine-2.2-integration

Use a nice code font (font files reqd)
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Tue, 18 Jun 2013 14:53:53 +0100
parents 513646585e45
children
line wrap: on
line source
class AddMessagesSticky < ActiveRecord::Migration
  def self.up
    add_column :messages, :sticky, :integer, :default => 0
  end

  def self.down
    remove_column :messages, :sticky
  end
end