core(minor): add new, optional description field to nonce

This commit is contained in:
Langhammer, Jens
2019-10-10 14:04:58 +02:00
parent ca3bcc565d
commit 3d8242be06
2 changed files with 29 additions and 1 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.2.6 on 2019-10-10 11:48
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('passbook_core', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='nonce',
name='description',
field=models.TextField(blank=True, default=''),
),
]