summaryrefslogtreecommitdiff
path: root/db/migrate/20130218141507_remove_closed_from_issue.rb
blob: f250288bc3b61df0c8992fc83b9041bdbdccbb5f (plain)
1
2
3
4
5
6
7
8
9
10
# rubocop:disable all
class RemoveClosedFromIssue < ActiveRecord::Migration
  def up
    remove_column :issues, :closed
  end

  def down
    add_column :issues, :closed, :boolean
  end
end