aboutsummaryrefslogtreecommitdiff
path: root/rpki/rpkidb/migrations/0006_turtle_rename.py
blob: dda1f5eed42a44676f168b9581e418d198ada9c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('rpkidb', '0005_turtle_rehome'),
    ]

    operations = [
        migrations.RenameField(
            model_name='ca',
            old_name='parent',
            new_name='turtle',
        ),
    ]