class CreatePlans < ActiveRecord::Migration[7.2] def change create_table :plans do |t| t.string :title t.references :employer_setup_process, null: false, foreign_key: true t.timestamps end end end