Imported channel migration (#4815)

This commit is contained in:
Uku Taht 2024-11-14 19:12:18 +02:00 committed by GitHub
parent daa42cbc9d
commit 0bbdbc9f42
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,9 @@
defmodule Plausible.IngestRepo.Migrations.AddChannelToImportedSource do
use Ecto.Migration
def change do
alter table(:imported_sources) do
add :channel, :"LowCardinality(String)"
end
end
end