remove entertainment app and admin category fix

This commit is contained in:
Parsa Nazer
2024-12-31 21:13:46 +03:30
parent f2673a298c
commit 0bd0bc22a6
11 changed files with 31 additions and 352 deletions
@@ -0,0 +1,23 @@
# Generated by Django 5.1.2 on 2024-12-31 17:41
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('account', '0007_remove_user_otp_user_otp_hash_alter_user_otp_expiry'),
]
operations = [
migrations.AlterField(
model_name='user',
name='otp_expiry',
field=models.DateTimeField(blank=True, null=True, verbose_name='تاریخ تمام شدن کد یک بار مصرف'),
),
migrations.AlterField(
model_name='user',
name='otp_hash',
field=models.CharField(blank=True, max_length=64, null=True, verbose_name='کد یک بار مصرف'),
),
]