Revert "Remove migration"

This reverts commit da0b9403e4.
This commit is contained in:
Uku Taht 2024-11-13 11:13:30 +02:00
parent 81fe57d82b
commit 7958a46c5c

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