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

10 linhas
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