You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

077_remove_issue_statuses_html_color.rb 206B

123456789
  1. class RemoveIssueStatusesHtmlColor < ActiveRecord::Migration[4.2]
  2. def self.up
  3. remove_column :issue_statuses, :html_color
  4. end
  5. def self.down
  6. raise ActiveRecord::IrreversibleMigration
  7. end
  8. end