# Generated by Django 5.2.12 on 2026-03-08 import django.db.models.deletion import uuid from django.conf import settings from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ] operations = [ migrations.CreateModel( name="ChatConversation", fields=[ ( "id", models.UUIDField( default=uuid.uuid4, editable=False, primary_key=True, serialize=False, ), ), ("title", models.CharField(blank=True, default="", max_length=255)), ("created_at", models.DateTimeField(auto_now_add=True)), ("updated_at", models.DateTimeField(auto_now=True)), ( "user", models.ForeignKey( on_delete=django.db.models.deletion.CASCADE, related_name="chat_conversations", to=settings.AUTH_USER_MODEL, ), ), ], options={ "ordering": ["-updated_at"], }, ), migrations.CreateModel( name="ChatMessage", fields=[ ( "id", models.UUIDField( default=uuid.uuid4, editable=False, primary_key=True, serialize=False, ), ), ( "role", models.CharField( choices=[ ("user", "User"), ("assistant", "Assistant"), ("system", "System"), ("tool", "Tool"), ], max_length=20, ), ), ("content", models.TextField(blank=True, default="")), ("tool_calls", models.JSONField(blank=True, null=True)), ( "tool_call_id", models.CharField(blank=True, max_length=255, null=True), ), ("name", models.CharField(blank=True, max_length=255, null=True)), ("created_at", models.DateTimeField(auto_now_add=True)), ( "conversation", models.ForeignKey( on_delete=django.db.models.deletion.CASCADE, related_name="messages", to="chat.chatconversation", ), ), ], options={ "ordering": ["created_at"], }, ), ]