add new migration

This commit is contained in:
Markos Gogoulos 2025-09-21 16:15:46 +03:00
parent 56182f0a6d
commit 0c1c5bbb09

View File

@ -0,0 +1,20 @@
# Generated by Django 5.2.6 on 2025-09-21 11:49
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rbac', '0002_alter_rbacgroup_uid'),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
operations = [
migrations.AlterField(
model_name='rbacgroup',
name='members',
field=models.ManyToManyField(related_name='rbac_groups', through='rbac.RBACMembership', through_fields=('rbac_group', 'user'), to=settings.AUTH_USER_MODEL),
),
]