berrypod/priv/repo/migrations/20260128235848_create_product_variants.exs
Jamey Greenwood c5c06d9979 feat: add Products context with provider integration (Phase 1)
Implement the schema foundation for syncing products from POD providers
like Printify. This includes encrypted credential storage, product/variant
schemas, and an Oban worker for background sync.

New modules:
- Vault: AES-256-GCM encryption for API keys
- Products context: CRUD and sync operations for products
- Provider behaviour: abstraction for POD provider implementations
- ProductSyncWorker: Oban job for async product sync

Schemas: ProviderConnection, Product, ProductImage, ProductVariant

Also reorganizes Printify client to lib/simpleshop_theme/clients/ and
mockup generator to lib/simpleshop_theme/mockups/ for better structure.

134 tests added covering all new functionality.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 20:32:20 +00:00

28 lines
1.0 KiB
Elixir

defmodule SimpleshopTheme.Repo.Migrations.CreateProductVariants do
use Ecto.Migration
def change do
create table(:product_variants, primary_key: false) do
add :id, :binary_id, primary_key: true
add :product_id, references(:products, type: :binary_id, on_delete: :delete_all), null: false
add :provider_variant_id, :string, null: false
add :title, :string, null: false
add :sku, :string
add :price, :integer, null: false
add :compare_at_price, :integer
add :cost, :integer
add :options, :map, default: %{}
add :is_enabled, :boolean, default: true, null: false
add :is_available, :boolean, default: true, null: false
timestamps(type: :utc_datetime)
end
create unique_index(:product_variants, [:product_id, :provider_variant_id])
create index(:product_variants, [:product_id])
create index(:product_variants, [:sku])
create index(:product_variants, [:is_enabled])
create index(:product_variants, [:is_available])
end
end