Migration: Add accept_traffic_until to "sites" (#3627)

This commit is contained in:
hq1 2023-12-13 14:44:52 +01:00 committed by GitHub
parent d161ad7667
commit 3f5eecf15f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,9 @@
defmodule Plausible.Repo.Migrations.AddAcceptTrafficUntilToSites do
use Ecto.Migration
def change do
alter table(:sites) do
add :accept_traffic_until, :naive_datetime
end
end
end