Added a migration to capture a change in on_delete for the Person.user field.

- Legacy-Id: 15457
This commit is contained in:
Henrik Levkowetz 2018-09-16 13:46:28 +00:00
parent 74359e9538
commit 44d4d76092

View file

@ -0,0 +1,23 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.13 on 2018-09-10 07:19
from __future__ import unicode_literals
from django.conf import settings
from django.db import migrations
import django.db.models.deletion
import ietf.utils.models
class Migration(migrations.Migration):
dependencies = [
('person', '0005_populate_person_name_from_draft'),
]
operations = [
migrations.AlterField(
model_name='person',
name='user',
field=ietf.utils.models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL),
),
]