Files
aperonight/db/migrate/20250928181311_create_order_promotion_codes.rb

11 lines
286 B
Ruby

class CreateOrderPromotionCodes < ActiveRecord::Migration[8.0]
def change
create_table :order_promotion_codes do |t|
t.references :order, null: false, foreign_key: true
t.references :promotion_code, null: false, foreign_key: true
t.timestamps
end
end
end