8 lines
246 B
Ruby
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
|