You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
742 B
Python
27 lines
742 B
Python
# Generated by Django 3.1.2 on 2020-11-14 17:30
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
('payments', '0006_auto_20190907_2029'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='payment',
|
|
name='backend_extid',
|
|
field=models.CharField(blank=True, max_length=256, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='subscription',
|
|
name='backend_extid',
|
|
field=models.CharField(blank=True, max_length=256, null=True),
|
|
),
|
|
]
|