mirror of
https://github.com/plausible/analytics.git
synced 2024-12-02 07:38:47 +03:00
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
|