put pricing in its own field

This commit is contained in:
Tobias Brunner 2025-03-03 08:28:21 +01:00
parent 6cfbc516f8
commit ae2a9b773b
No known key found for this signature in database
4 changed files with 30 additions and 1 deletions

View file

@ -0,0 +1,21 @@
# Generated by Django 5.1.5 on 2025-03-03 07:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
(
"services",
"0011_reusabletext_textsnippet_squashed_0013_alter_plan_description",
),
]
operations = [
migrations.AddField(
model_name="plan",
name="pricing",
field=models.TextField(blank=True, null=True),
),
]