Files
wish/priv/repo/migrations/20231123173824_add_image_url.exs
2023-11-23 18:03:16 +00:00

10 lines
160 B
Elixir

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