datatracker/ietf/ipr/migrations/0005_rename_field_document2.py
Henrik Levkowetz 726fcbf27d Removed all __future__ imports.
- Legacy-Id: 17391
2020-03-05 23:53:42 +00:00

23 lines
507 B
Python

# Copyright The IETF Trust 2019-2020, All Rights Reserved
# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2019-05-21 05:31
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',
),
]