analytics/priv/repo/migrations/20191118075359_allow_free_subscriptions.exs

17 lines
348 B
Elixir
Raw Normal View History

2019-11-18 11:13:54 +03:00
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