analytics/priv/repo/migrations/20191025055334_add_name_to_events.exs

11 lines
198 B
Elixir
Raw Normal View History

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
add :name, :string, null: false
2019-10-25 09:06:11 +03:00
end
end
end