analytics/priv/repo/migrations/20191031063001_remove_goal_name.exs
2019-10-31 14:36:16 +08:00

10 lines
156 B
Elixir

defmodule Plausible.Repo.Migrations.RemoveGoalName do
use Ecto.Migration
def change do
alter table(:goals) do
remove :name
end
end
end