redmine/db/migrate/077_remove_issue_statuses_html_color.rb
Jean-Philippe Lang 7535c211d5 Removed IssueStatus html_color attribute.
Issue list colorization can be done using a custom theme. Each row is given a class that correspond to the issue status (eg. status-1 where 1 is the status position).

git-svn-id: http://redmine.rubyforge.org/svn/trunk@881 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-11-04 11:40:17 +00:00

10 lines
187 B
Ruby

class RemoveIssueStatusesHtmlColor < ActiveRecord::Migration
def self.up
remove_column :issue_statuses, :html_color
end
def self.down
raise IrreversibleMigration
end
end