annotate db/migrate/20091123212029_add_default_done_ratio_to_issue_status.rb @ 341:b6ec5451fd0d feature_118

Make the project title (h1 in top of page) a link to the project overview (fixes #118). Does not work for the "special" soundsoftware project, which uses image replacement rather than clickable text.
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 31 Mar 2011 11:12:48 +0100
parents 513646585e45
children
rev   line source
Chris@0 1 class AddDefaultDoneRatioToIssueStatus < ActiveRecord::Migration
Chris@0 2 def self.up
Chris@0 3 add_column :issue_statuses, :default_done_ratio, :integer
Chris@0 4 end
Chris@0 5
Chris@0 6 def self.down
Chris@0 7 remove_column :issue_statuses, :default_done_ratio
Chris@0 8 end
Chris@0 9 end