app.polisplexity.tech/pxy_whatsapp/migrations/0004_conversation_message.py
Ekaropolus f2180483f0
All checks were successful
continuous-integration/drone/push Build is passing
Adding DB to Whatsaap AI
2025-05-19 23:04:20 -06:00

35 lines
1.4 KiB
Python

# Generated by Django 5.0.3 on 2025-05-20 03:14
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('pxy_whatsapp', '0003_whatsappbot_assistant'),
]
operations = [
migrations.CreateModel(
name='Conversation',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('user_number', models.CharField(max_length=32)),
('started_at', models.DateTimeField(auto_now_add=True)),
('bot', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='conversations', to='pxy_whatsapp.whatsappbot')),
],
),
migrations.CreateModel(
name='Message',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('direction', models.CharField(choices=[('in', 'In'), ('out', 'Out')], max_length=4)),
('content', models.TextField()),
('timestamp', models.DateTimeField(auto_now_add=True)),
('response_time_ms', models.IntegerField(blank=True, null=True)),
('conversation', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='messages', to='pxy_whatsapp.conversation')),
],
),
]