analytics/priv/repo/migrations/20210209095257_add_last_payment_details.exs
Uku Taht a8cb187e8d
Track billing cycles (#697)
* Add dummy check usage worker

* Add and persist last_bill_date

* Remove name clash

* Correct timing and suggestions for over limit emails

* Fix tests for trial upgrade notifications
2021-02-12 10:17:53 +02:00

10 lines
185 B
Elixir

defmodule Plausible.Repo.Migrations.AddLastPaymentDetails do
use Ecto.Migration
def change do
alter table(:subscriptions) do
add :last_bill_date, :date
end
end
end