mirror of
https://github.com/plausible/analytics.git
synced 2024-12-26 11:02:52 +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
|