25 lines
688 B
Python
25 lines
688 B
Python
# Copyright The IETF Trust 2019-2020, All Rights Reserved
|
|
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.23 on 2019-08-07 12:27
|
|
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('doc', '0024_iana_experts'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='IanaExpertDocEvent',
|
|
fields=[
|
|
('docevent_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='doc.DocEvent')),
|
|
],
|
|
bases=('doc.docevent',),
|
|
),
|
|
]
|