ashirahattia/cs169-pgm

View on GitHub
db/migrate/20161027041215_add_four_five_six_seventh_choices.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddFourFiveSixSeventhChoices < ActiveRecord::Migration
  def change
    add_column :groups, :fourth_choice, :integer
    add_column :groups, :fifth_choice, :integer
    add_column :groups, :sixth_choice, :integer
    add_column :groups, :seventh_choice, :integer
  end
end