Delete 0004_alter_user_clan.py

This commit is contained in:
Ilia vasilenko 2022-10-08 17:16:36 +03:00 committed by GitHub
parent 117b2f3bae
commit 693c1e2dbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,19 +0,0 @@
# Generated by Django 4.0.8 on 2022-10-08 12:34
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('users', '0003_user_name_user_respect_user_telegram_and_more'),
]
operations = [
migrations.AlterField(
model_name='user',
name='clan',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='users.clan'),
),
]