28 lines
733 B
Python
28 lines
733 B
Python
<<<<<<< HEAD
|
|
# Generated by Django 4.2.17 on 2025-01-13 08:40
|
|
=======
|
|
# Generated by Django 5.1.4 on 2025-01-12 17:20
|
|
>>>>>>> 3889fed781038764cbb5e2e895a933edb4ebb451
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ChatLog',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('user_message', models.TextField()),
|
|
('chatbot_response', models.TextField()),
|
|
('timestamp', models.DateTimeField(auto_now_add=True)),
|
|
],
|
|
),
|
|
]
|