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