mirror of
https://github.com/plausible/analytics.git
synced 2024-12-25 02:24:55 +03:00
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
|