mirror of
https://github.com/plausible/analytics.git
synced 2024-12-04 03:11:32 +03:00
10 lines
172 B
Elixir
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
|