7 lines
175 B
Ruby
7 lines
175 B
Ruby
|
# frozen_string_literal: true
|
||
|
class AddProjectToClient < ActiveRecord::Migration[5.0]
|
||
|
def change
|
||
|
add_column :candidates, :project, :string, after: :experience
|
||
|
end
|
||
|
end
|