Redmine/db/migrate/077_remove_issue_statuses_h...

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