Add Activity status options and fix DataAccess model name

The changes add more Activity status choices in biz app and fix the
verbose plural name for DataAccess in sync app.
apikeys
Razmig Sarkissian 2 months ago
parent e58ec43999
commit 758bd60c93
  1. 18
      biz/migrations/0003_alter_activity_status.py
  2. 17
      sync/migrations/0009_alter_dataaccess_options.py

@ -0,0 +1,18 @@
# Generated by Django 5.1 on 2025-08-07 16:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('biz', '0002_alter_prospect_email'),
]
operations = [
migrations.AlterField(
model_name='activity',
name='status',
field=models.CharField(blank=True, choices=[('NONE', 'None'), ('INBOUND', 'Inbound'), ('CONTACTED', 'Contacted'), ('RESPONDED', 'Responded'), ('SHOULD_TEST', 'Should test'), ('TESTING', 'Testing'), ('CUSTOMER', 'Customer'), ('LOST', 'Lost customer'), ('DECLINED', 'Declined'), ('NOT_CONCERNED', 'Not concerned'), ('SHOULD_BUY', 'Should buy')], max_length=50, null=True),
),
]

@ -0,0 +1,17 @@
# Generated by Django 5.1 on 2025-08-07 16:51
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('sync', '0008_alter_dataaccess_store_id'),
]
operations = [
migrations.AlterModelOptions(
name='dataaccess',
options={'verbose_name_plural': 'Data Access'},
),
]
Loading…
Cancel
Save