More stuff

This commit is contained in:
2023-11-23 18:03:11 +00:00
committed by Daniel Patterson
parent b9569dcf6b
commit 77dda92301
8 changed files with 60 additions and 37 deletions

View File

@@ -0,0 +1,9 @@
defmodule Wish.Repo.Migrations.AddImageUrl do
use Ecto.Migration
def change do
alter table("items") do
add :image_url, :string
end
end
end