1
0
Mirror von https://github.com/redmine/redmine.git synchronisiert 2024-07-27 07:37:45 +02:00
redmine/db/migrate/077_remove_issue_statuses_html_color.rb

10 Zeilen
206 B
Ruby

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