complete rework of offerings
This commit is contained in:
parent
84e25c82d1
commit
20f27bd6b5
16 changed files with 313 additions and 294 deletions
25
hub/services/migrations/0011_reusabletext_textsnippet.py
Normal file
25
hub/services/migrations/0011_reusabletext_textsnippet.py
Normal 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",
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue