blob: ae354a9bdd4a625e0e42d210b079c11d61aa2f15 (
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
import rpki.fields
class Migration(migrations.Migration):
dependencies = [
('pubdb', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='client',
name='bpki_cert',
field=rpki.fields.CertificateField(),
),
migrations.AlterField(
model_name='client',
name='bpki_glue',
field=rpki.fields.CertificateField(null=True),
),
]
|