To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / db / migrate / 077_remove_issue_statuses_html_color.rb @ 443:350acce374a2

History | View | Annotate | Download (187 Bytes)

1
class RemoveIssueStatusesHtmlColor < ActiveRecord::Migration
2
  def self.up
3
    remove_column :issue_statuses, :html_color
4
  end
5

    
6
  def self.down
7
    raise IrreversibleMigration
8
  end
9
end