core: add template field to PropertyMapping

This commit is contained in:
Jens Langhammer
2020-02-17 17:47:51 +01:00
parent a5629c5155
commit e6c47fee26
2 changed files with 30 additions and 2 deletions

View File

@ -0,0 +1,19 @@
# Generated by Django 3.0.3 on 2020-02-17 16:15
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("passbook_core", "0005_merge_20191025_2022"),
]
operations = [
migrations.AddField(
model_name="propertymapping",
name="template",
field=models.TextField(default=""),
preserve_default=False,
),
]