My migration does not appear to work. Why?

Expanding on that answer, the contents of the new migration file will look something like:

defmodule App.Repo.Migrations.AddUrlToTestbeds do
  use Ecto.Migration

  def change do
    alter table(:testbeds) do
      add :url, :string
    end
  end
end
2 Likes