healthchecks_healthchecks/hc/payments/migrations/0008_subscription_setup_date.py
Pēteris Caune a308997b3a
Remove most of the hc.payments stuff
Why remove:

* For self-hosters, payment-related features are unused and dead weight
* For SaaS (any would-be Healthchecks.io competitors), the existing
  payment handling logic is not very useful either, as it would need to
  be heavily modified to match their business model, pricing, chosen
  payment gateway
* For the hosted service (Healthchecks.io), the up-to-date billing code
  lives in a private fork of this repo. Maintenance is easier if this
  repo does not have an older, diverging version of the same
  functionality

A few payment-related bits are staying at least for time being:

* the "USE_PAYMENTS" setting
* the hc.payments.models.Subscription model
* tiny stubs for the "Pricing" and "Billing" pages

They are used in various places in the code and templates,
and I think ripping them out in one go would be too disruptive.
2023-10-19 14:17:44 +03:00

19 lines
403 B
Python

# Generated by Django 3.1.2 on 2020-11-06 12:07
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('payments', '0007_auto_20200727_1430'),
]
operations = [
migrations.AddField(
model_name='subscription',
name='setup_date',
field=models.DateField(blank=True, null=True),
),
]