summaryrefslogtreecommitdiffstats
path: root/releng/migrations/0003_release_pgp_key.py
blob: 3ff103c6f3c8f16dcedd34e145d3ecae12284869 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Generated by Django 3.0.6 on 2020-05-22 22:14

import devel.fields
from django.db import migrations


class Migration(migrations.Migration):

    dependencies = [
        ('releng', '0002_auto_20181216_1605'),
    ]

    operations = [
        migrations.AddField(
            model_name='release',
            name='pgp_key',
            field=devel.fields.PGPKeyField(blank=True, help_text='consists of 40 hex digits; use `gpg --fingerprint`',
                                           max_length=40, null=True, verbose_name='PGP key fingerprint'),
        ),
    ]