class CreateEducationEntries < ActiveRecord::Migration[7.0] def change create_table :education_entries do |t| t.string :title t.string :institution t.string :period t.string :location t.references :user t.timestamps end add_column :work_experiences, :reference_date, :date end end