berrypod/priv/repo/migrations/20260121220351_add_image_metadata_and_oban.exs
jamey 9528700862 rename project from SimpleshopTheme to Berrypod
All modules, configs, paths, and references updated.
836 tests pass, zero warnings.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 21:23:15 +00:00

16 lines
337 B
Elixir

defmodule Berrypod.Repo.Migrations.AddImageMetadataAndOban do
use Ecto.Migration
def change do
alter table(:images) do
add :source_width, :integer
add :source_height, :integer
add :variants_status, :string, default: "pending"
remove :thumbnail_data
end
Oban.Migration.up(version: 12)
end
end