mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 11:12:15 +03:00
40900c7653
* 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
10 lines
215 B
Elixir
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
|