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: 3a5e978a1823ca66a78a9aafbb1b640c43ed9d50 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddStateToIssue < ActiveRecord::Migration
  def change
    add_column :issues, :state, :string
  end
end