class CreateAttendents < ActiveRecord::Migration[8.0] def change create_table :attendents do |t| t.references :parties, null: false, foreign_key: true t.references :friends, null: false, foreign_key: true t.string :status, default: 'offen' t.timestamps end end end