????

Your IP : 3.22.70.233


Current Path : C:/inetpub/vhost/redmine/db/migrate/
Upload File :
Current File : C:/inetpub/vhost/redmine/db/migrate/083_add_messages_sticky.rb

class AddMessagesSticky < ActiveRecord::Migration[4.2]
  def self.up
    add_column :messages, :sticky, :integer, :default => 0
  end

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