analytics/priv/clickhouse_repo/migrations/20201020083739_add_event_metadata.exs
Uku Taht 40900c7653
Ability to add event metadata (#381)
* Ability to add event metadata

* Close Dropdown on outside click

* Show (none) value in metadata breakdown

* Allow filtering for metadata key/val pairs

* Use correct clickhouse_ecto

* Better naming for meta filter

* Add tests

* Add changelog entry

* Remove change made for testing
2020-10-28 11:09:04 +02:00

10 lines
215 B
Elixir

defmodule Plausible.ClickhouseRepo.Migrations.AddEventMetadata do
use Ecto.Migration
def change do
alter table(:events) do
add :meta, {:nested, {{:key, :string}, {:value, :string}}}
end
end
end