Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20130218141507_remove_closed_from_issue.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95cc064252b8f603b5e7bcb9365ae74ea82600c0 (plain)
1
2
3
4
5
6
7
8
9
class RemoveClosedFromIssue < ActiveRecord::Migration
  def up
    remove_column :issues, :closed
  end

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