mirror of
https://github.com/evgen-app/hackbot.git
synced 2024-12-04 22:03:46 +03:00
21 lines
530 B
Python
21 lines
530 B
Python
# Generated by Django 4.0.3 on 2022-03-19 12:21
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0002_alter_user_joined'),
|
|
('chat_models', '0002_message_time_created'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='message',
|
|
name='author',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='users.user'),
|
|
),
|
|
]
|