37733-vm/core/migrations/0006_whatsappconfig.py
Flatlogic Bot 1654496646 dem13
2026-01-23 12:04:14 +00:00

27 lines
947 B
Python

# Generated by Django 5.2.7 on 2026-01-23 12:03
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0005_truck_registration_expiry_date'),
]
operations = [
migrations.CreateModel(
name='WhatsAppConfig',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('api_token', models.CharField(max_length=255, verbose_name='Wablas API Token')),
('secret_key', models.CharField(blank=True, max_length=255, null=True, verbose_name='Wablas Secret Key')),
('is_active', models.BooleanField(default=True, verbose_name='Is Active')),
],
options={
'verbose_name': 'WhatsApp Configuration',
'verbose_name_plural': 'WhatsApp Configuration',
},
),
]