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,21 @@
# Generated by Django 5.1.5 on 2025-02-07 18:11
import django.db.models.deletion
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0010_message_custom_author_alter_message_sender_uuid_and_more'),
]
operations = [
migrations.AddField(
model_name='message',
name='user',
field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL),
preserve_default=False,
),
]