aboutsummaryrefslogtreecommitdiff
path: root/rpki/irdb/migrations/0003_repository_rrdp_notification_uri.py
blob: 1e0e43c2ce8f359692b2f8eb2d1293045e760958 (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 = [
        ('irdb', '0002_remove_client_parent_handle'),
    ]

    operations = [
        migrations.AddField(
            model_name='repository',
            name='rrdp_notification_uri',
            field=models.TextField(null=True),
        ),
    ]