You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
579 B
20 lines
579 B
# Generated by Django 2.0.3 on 2018-03-15 06:03
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('user', '0015_auto_20180315_0547'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='emailsubscription',
|
|
name='user',
|
|
field=models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='email_subscription', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
]
|
|
|