2026-02-18 21:23:15 +00:00
|
|
|
defmodule Berrypod.Repo.Migrations.CreateProductImages do
|
2026-01-29 08:32:24 +00:00
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
|
|
def change do
|
|
|
|
|
create table(:product_images, primary_key: false) do
|
|
|
|
|
add :id, :binary_id, primary_key: true
|
2026-01-31 14:24:58 +00:00
|
|
|
|
|
|
|
|
add :product_id, references(:products, type: :binary_id, on_delete: :delete_all),
|
|
|
|
|
null: false
|
|
|
|
|
|
2026-01-29 08:32:24 +00:00
|
|
|
add :src, :string, null: false
|
|
|
|
|
add :position, :integer, default: 0, null: false
|
|
|
|
|
add :alt, :string
|
|
|
|
|
|
|
|
|
|
timestamps(type: :utc_datetime)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Composite index covers queries on product_id alone (leftmost prefix)
|
|
|
|
|
create index(:product_images, [:product_id, :position])
|
|
|
|
|
end
|
|
|
|
|
end
|