36699-vm/core/migrations/0001_initial.py
Flatlogic Bot 604db7d8ee AI Chatbot
2025-12-06 06:38:51 +00:00

24 lines
660 B
Python

# Generated by Django 5.2.7 on 2025-12-06 05:19
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='ChatMessage',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('sender', models.CharField(choices=[('user', 'User'), ('bot', 'Bot')], max_length=10)),
('message', models.TextField()),
('timestamp', models.DateTimeField(auto_now_add=True)),
],
),
]