Add more attributes to candidate - completes: #100

This commit is contained in:
Mark Moser
2017-02-27 11:11:28 -06:00
parent 7f8e74c6b3
commit 4ba35ccf33
8 changed files with 55 additions and 2 deletions

View File

@ -0,0 +1,7 @@
# 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