Project

General

Profile

Feature #1474 » 095_add_issues_last_comment.rb

Chris Peterson, 2008-06-16 21:20

 
1
class AddIssuesLastComment < ActiveRecord::Migration
2
  def self.up
3
    add_column :issues, :last_comment, :text
4
  end
5

    
6
  def self.down
7
    remove_column :issues, :last_comment
8
  end
9
end
(2-2/11)