You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
528 B
Python
23 lines
528 B
Python
1 year ago
|
# Generated by Django 4.2.5 on 2023-10-05 11:09
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('abac', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='user',
|
||
|
options={'verbose_name': 'user', 'verbose_name_plural': 'users'},
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='attribute',
|
||
|
name='value',
|
||
|
field=models.CharField(max_length=2048),
|
||
|
),
|
||
|
]
|