analytics/priv/repo/migrations/20210209095257_add_last_payment_details.exs

10 lines
185 B
Elixir
Raw Normal View History

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