chore: apply mix format to codebase
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -4,7 +4,10 @@ defmodule SimpleshopTheme.Repo.Migrations.CreateProductImages do
|
||||
def change do
|
||||
create table(:product_images, 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 :product_id, references(:products, type: :binary_id, on_delete: :delete_all),
|
||||
null: false
|
||||
|
||||
add :src, :string, null: false
|
||||
add :position, :integer, default: 0, null: false
|
||||
add :alt, :string
|
||||
|
||||
Reference in New Issue
Block a user