7 changed files with 17 additions and 8 deletions
@ -1,3 +1,4 @@ |
|||
class WorkExperience < ApplicationRecord |
|||
belongs_to :user |
|||
default_scope -> { order(reference_date: :desc) } |
|||
end |
|||
|
|||
@ -0,0 +1,5 @@ |
|||
class AddItemsCsvToEducation < ActiveRecord::Migration[7.0] |
|||
def change |
|||
add_column :education_entries, :items_csv, :text |
|||
end |
|||
end |
|||
Loading…
Reference in new issue