postland/priv/repo/migrations/20241118235445_add_my_like_id.exs

10 lines
167 B
Elixir
Raw Normal View History

2024-11-19 00:27:25 +00:00
defmodule Postland.Repo.Migrations.AddMyLikeId do
use Ecto.Migration
def change do
alter table("objects") do
add :my_like_id, :string
end
end
end