25 lines
662 B
Python
25 lines
662 B
Python
# Copyright The IETF Trust 2018-2020, All Rights Reserved
|
|
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.13 on 2018-09-10 07:19
|
|
|
|
|
|
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),
|
|
),
|
|
]
|