post message in chatter
This commit is contained in:
parent
70f4a02db9
commit
7b21d9d612
3 changed files with 68 additions and 0 deletions
24
hub/services/migrations/0011_lead_plan.py
Normal file
24
hub/services/migrations/0011_lead_plan.py
Normal file
|
@ -0,0 +1,24 @@
|
|||
# Generated by Django 5.1.5 on 2025-01-28 09:48
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("services", "0010_remove_service_price"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="lead",
|
||||
name="plan",
|
||||
field=models.ForeignKey(
|
||||
blank=True,
|
||||
null=True,
|
||||
on_delete=django.db.models.deletion.SET_NULL,
|
||||
to="services.plan",
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue