11 lines
286 B
Ruby
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
|