mirror of
https://github.com/plausible/analytics.git
synced 2024-11-30 00:58:54 +03:00
a8cb187e8d
* 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
10 lines
185 B
Elixir
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
|