postland/priv/repo/migrations/20241118235445_add_my_like_id.exs
2024-11-18 18:27:25 -06:00

9 lines
167 B
Elixir

defmodule Postland.Repo.Migrations.AddMyLikeId do
use Ecto.Migration
def change do
alter table("objects") do
add :my_like_id, :string
end
end
end