2019-10-25 09:06:11 +03:00
|
|
|
defmodule Plausible.Repo.Migrations.AddNameToEvents do
|
|
|
|
use Ecto.Migration
|
|
|
|
use Plausible.Repo
|
|
|
|
|
|
|
|
def change do
|
|
|
|
alter table(:events) do
|
2020-06-05 16:14:17 +03:00
|
|
|
add :name, :string, null: false
|
2019-10-25 09:06:11 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|