class CreateUsers < ActiveRecord::Migration[7.0] def change create_table :users do |t| t.string :name t.string :objective t.string :address t.string :email t.string :phone t.string :linkedin t.string :github t.string :other_page_url t.timestamps end add_reference :work_experiences, :user, index: true end end