37622-vm/core/migrations/0001_initial.py
Flatlogic Bot 2a479c82a7 2.2
2026-01-20 17:13:37 +00:00

29 lines
1.1 KiB
Python

# Generated by Django 5.2.7 on 2026-01-20 16:39
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Business',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('business_name', models.CharField(max_length=255)),
('industry', models.CharField(choices=[('real_estate', 'Real Estate'), ('clinic_dental', 'Clinic / Dental'), ('salon_spa', 'Salon / Spa'), ('coaching_consulting', 'Coaching / Consulting'), ('custom', 'Custom (Other)')], default='custom', max_length=50)),
('phone_number', models.CharField(help_text="Twilio or other provider's phone number", max_length=20)),
('agent_name', models.CharField(default='AI Assistant', max_length=100)),
('status', models.BooleanField(default=True, help_text='Active or inactive status')),
],
options={
'verbose_name_plural': 'Businesses',
},
),
]