analytics/priv/ingest_repo/migrations/20220422075510_add_entry_props.exs

10 lines
221 B
Elixir
Raw Normal View History

2022-04-22 10:58:02 +03:00
defmodule Plausible.ClickhouseRepo.Migrations.AddEntryProps do
use Ecto.Migration
def change do
alter table(:sessions) do
add(:entry_meta, {:nested, {{:key, :string}, {:value, :string}}})
end
end
end