summaryrefslogtreecommitdiff
path: root/db/migrate/20130218141117_add_state_to_milestone.rb
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