25 lines
576 B
Python
25 lines
576 B
Python
# Copyright The IETF Trust 2019, All Rights Reserved
|
|
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.20 on 2019-05-21 05:31
|
|
|
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('doc', '0019_rename_field_document2'),
|
|
('ipr', '0004_remove_iprdocrel_document'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='iprdocrel',
|
|
old_name='document2',
|
|
new_name='document',
|
|
),
|
|
]
|