Add legacy flag column to site_imports schema (#3842)

This commit is contained in:
Adrian Gruntkowski 2024-02-28 09:11:45 +01:00 committed by GitHub
parent 0fe5682f91
commit fdbe4cc0a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,9 @@
defmodule Plausible.Repo.Migrations.AddLegacyFlagToSiteImports do
use Ecto.Migration
def change do
alter table(:site_imports) do
add :legacy, :boolean, null: false, default: true
end
end
end