skill-assessment-app/db/migrate/20170227154554_add_attributes_to_candidate.rb

8 lines
246 B
Ruby

# frozen_string_literal: true
class AddAttributesToCandidate < ActiveRecord::Migration[5.0]
def change
add_column :candidates, :skill_needs, :string, after: :project
add_column :candidates, :position, :string, after: :project
end
end