adds candidate recruitment project label field

completes #93
This commit is contained in:
Mark Moser
2017-02-08 16:05:37 -06:00
parent 5c3691ebe0
commit 58d3fbd7c2
14 changed files with 46 additions and 7 deletions

View File

@ -0,0 +1,6 @@
# frozen_string_literal: true
class AddProjectToClient < ActiveRecord::Migration[5.0]
def change
add_column :candidates, :project, :string, after: :experience
end
end