class CreateStates < ActiveRecord::Migration[6.1] def change create_table :states do |t| t.references :character, null: false, foreign_key: true t.references :condition, null: false, foreign_key: true t.timestamp :expires_at t.timestamps end end end