analytics/priv/ingest_repo/migrations/20230214114402_create_ingest_counters_table.exs

19 lines
673 B
Elixir
Raw Normal View History

defmodule Plausible.IngestRepo.Migrations.CreateIngestCountersTable do
use Ecto.Migration
def change do
create_if_not_exists table(:ingest_counters,
primary_key: false,
engine: "SummingMergeTree(value)",
options:
"ORDER BY (domain, toDate(event_timebucket), metric, toStartOfMinute(event_timebucket))"
) do
add(:event_timebucket, :utc_datetime)
add(:domain, :"LowCardinality(String)")
add(:site_id, :"Nullable(UInt64)")
add(:metric, :"LowCardinality(String)")
add(:value, :UInt64)
end
end
end