Add label column to site_imports schema (#3926)

This commit is contained in:
Adrian Gruntkowski 2024-03-22 10:51:39 +01:00 committed by GitHub
parent fb61f0b425
commit 52c226c428
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,9 @@
defmodule Plausible.Repo.Migrations.AddLabelToSiteImports do
use Ecto.Migration
def change do
alter table(:site_imports) do
add :label, :string
end
end
end