aboutsummaryrefslogtreecommitdiff
path: root/rpki/irdb/migrations/0003_remove_rootd.py
blob: aef4c5abad0cd0cd97b97d53abb1a5fb0c803cde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('irdb', '0002_root'),
    ]

    operations = [
        migrations.RemoveField(
            model_name='rootd',
            name='issuer',
        ),
        migrations.RemoveField(
            model_name='rootd',
            name='turtle_ptr',
        ),
        migrations.DeleteModel(
            name='Rootd',
        ),
    ]