mirror of
https://github.com/plausible/analytics.git
synced 2024-12-22 17:11:36 +03:00
10 lines
156 B
Elixir
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
|