Changeset View
Changeset View
Standalone View
Standalone View
looper/migrations/0019_subscription_next_payment.py
| # Generated by Django 2.1.1 on 2018-09-27 10:01 | # Generated by Django 2.1.1 on 2018-09-27 10:01 | ||||
| from django.db import migrations | from django.db import migrations | ||||
| class Migration(migrations.Migration): | class Migration(migrations.Migration): | ||||
| dependencies = [ | dependencies = [ | ||||
| ('looper', '0018_remove_paymentmethod_is_default'), | ('looper', '0018_remove_paymentmethod_is_default'), | ||||
| ] | ] | ||||
| operations = [ | operations = [ | ||||
| migrations.RenameField( | migrations.RenameField( | ||||
| model_name='subscription', | model_name='subscription', old_name='current_interval_ends_at', new_name='next_payment', | ||||
| old_name='current_interval_ends_at', | |||||
| new_name='next_payment', | |||||
| ), | ), | ||||
| ] | ] | ||||