gitlab-org--gitlab-foss/db/migrate/20130218141117_add_state_to...

7 lines
141 B
Ruby

# rubocop:disable all
class AddStateToMilestone < ActiveRecord::Migration
def change
add_column :milestones, :state, :string
end
end