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

20130218140952_add_state_to_issue.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 062103d0e3389f948b3539bbfc79d6ad820b4351 (plain)
1
2
3
4
5
class AddStateToIssue < ActiveRecord::Migration
  def change
    add_column :issues, :state, :string
  end
end