complete rework of offerings

This commit is contained in:
Tobias Brunner 2025-02-28 14:13:51 +01:00
parent 84e25c82d1
commit 20f27bd6b5
No known key found for this signature in database
16 changed files with 313 additions and 294 deletions

View file

@ -0,0 +1,25 @@
# Generated by Django 5.1.5 on 2025-02-28 13:07
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("services", "0010_reusabletext_remove_planprice_currency_and_more"),
]
operations = [
migrations.AddField(
model_name="reusabletext",
name="textsnippet",
field=models.ForeignKey(
blank=True,
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="children",
to="services.reusabletext",
),
),
]