class CreateMessages < ActiveRecord::Migration[6.1] def change create_table :messages do |t| t.references :sender, foreign_key: { to_table: :characters } t.references :recipient, null: false, foreign_key: { to_table: :characters } t.string :subject t.text :body t.timestamps end end end