role description blank=True

This commit is contained in:
2025-11-05 12:49:23 +03:30
parent 57b8d10714
commit 27cd28c4d4
3 changed files with 47 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.0 on 2025-11-05 09:18
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('authorization', '0021_permissions_modify_state'),
]
operations = [
migrations.AlterField(
model_name='role',
name='description',
field=models.TextField(blank=True, max_length=500, null=True),
),
]