analytics/priv/repo/migrations/20211028122202_grace_period_end.exs

10 lines
172 B
Elixir
Raw Normal View History

2021-10-29 11:18:29 +03:00
defmodule Plausible.Repo.Migrations.GracePeriodEnd do
use Ecto.Migration
def change do
alter table(:users) do
add :grace_period_end, :date
end
end
end