Add migrations

This commit is contained in:
2025-02-07 20:58:54 +00:00
parent 9af7ce5fcb
commit f6578edd4d
12 changed files with 433 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.1.5 on 2025-02-05 21:07
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0003_remove_chat_ts'),
]
operations = [
migrations.AddField(
model_name='chat',
name='source_name',
field=models.CharField(blank=True, max_length=255, null=True),
),
]