analytics/priv/repo/migrations/20211028122202_grace_period_end.exs
2021-11-16 10:14:23 +02:00

10 lines
172 B
Elixir

defmodule Plausible.Repo.Migrations.GracePeriodEnd do
use Ecto.Migration
def change do
alter table(:users) do
add :grace_period_end, :date
end
end
end