Changeset View
Changeset View
Standalone View
Standalone View
looper/migrations/0048_subscription_last_notification.py
| # Generated by Django 2.1.2 on 2018-11-06 09:36 | # Generated by Django 2.1.2 on 2018-11-06 09:36 | ||||
| from django.db import migrations, models | from django.db import migrations, models | ||||
| class Migration(migrations.Migration): | class Migration(migrations.Migration): | ||||
| dependencies = [ | dependencies = [ | ||||
| ('looper', '0047_fix_order_paid_at'), | ('looper', '0047_fix_order_paid_at'), | ||||
| ] | ] | ||||
| operations = [ | operations = [ | ||||
| migrations.AddField( | migrations.AddField( | ||||
| model_name='subscription', | model_name='subscription', | ||||
| name='last_notification', | name='last_notification', | ||||
| field=models.DateTimeField(blank=True, help_text='When Ton was last sent a notification that this subscription passed its next payment date. Only used for managed subscriptions.', null=True), | field=models.DateTimeField( | ||||
| blank=True, | |||||
| help_text='When Ton was last sent a notification that this subscription passed its next payment date. Only used for managed subscriptions.', | |||||
| null=True, | |||||
| ), | |||||
| ), | ), | ||||
| ] | ] | ||||