mirror of
https://github.com/plausible/analytics.git
synced 2024-12-24 01:54:34 +03:00
14 lines
288 B
Elixir
14 lines
288 B
Elixir
defmodule Plausible.IngestRepo.Migrations.AddAcquisitionChannel do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:events_v2) do
|
|
add :channel, :"LowCardinality(String)"
|
|
end
|
|
|
|
alter table(:sessions_v2) do
|
|
add :channel, :"LowCardinality(String)"
|
|
end
|
|
end
|
|
end
|