partner categories
This commit is contained in:
parent
83504f6b7c
commit
c6b50da971
8 changed files with 75 additions and 4 deletions
23
hub/services/migrations/0046_add_partner_category.py
Normal file
23
hub/services/migrations/0046_add_partner_category.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Generated by Django 5.2 on 2025-07-11 08:40
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("services", "0045_add_og_image_to_article"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="consultingpartner",
|
||||
name="category",
|
||||
field=models.CharField(
|
||||
choices=[("CONSULTING", "Consulting"), ("TRAINING", "Training")],
|
||||
default="CONSULTING",
|
||||
help_text="Category of the consulting partner",
|
||||
max_length=20,
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue