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

20130218141117_add_state_to_milestone.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f71608692c452be6340128e4a9641c9554b61a1 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddStateToMilestone < ActiveRecord::Migration
  def change
    add_column :milestones, :state, :string
  end
end