analytics/priv/repo/migrations/20191118075359_allow_free_subscriptions.exs
2019-11-18 16:13:54 +08:00

17 lines
348 B
Elixir

defmodule Plausible.Repo.Migrations.AllowFreeSubscriptions do
use Ecto.Migration
def up do
execute """
ALTER table subscriptions
ALTER paddle_subscription_id DROP NOT NULL,
ALTER update_url DROP NOT NULL,
ALTER cancel_url DROP NOT NULL,
ALTER next_bill_date DROP NOT NULL
"""
end
def down do
end
end