class CreateOrders < ActiveRecord::Migration[7.0] def change create_table :orders do |t| t.references :user_account, null: false, foreign_key: true t.string :public_id t.timestamps end end end