Invoicing: Allow plugins to add data (#5452)

* Allow plugins to add data to invoices

* Add documentation
This commit is contained in:
Raphael Michel
2025-09-22 10:04:33 +02:00
committed by Raphael Michel
parent 9d2ef94389
commit fc4a9406e1
5 changed files with 36 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.2.17 on 2025-09-09 09:55
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("pretixbase", "0289_invoiceline_period"),
]
operations = [
migrations.AddField(
model_name="invoice",
name="plugin_data",
field=models.JSONField(default=dict),
),
]