users
This commit is contained in:
19
users/migrations/0002_alter_account_role.py
Normal file
19
users/migrations/0002_alter_account_role.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 4.2.21 on 2025-05-18 18:30
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('users', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='account',
|
||||
name='role',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='users.role', unique=True, verbose_name='Роль пользователя'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user