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.
24 lines
571 B
Python
24 lines
571 B
Python
# Generated by Django 5.2.3 on 2025-07-02 08:02
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("accounts", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="clientpermission",
|
|
name="codename",
|
|
field=models.CharField(default="", max_length=100),
|
|
),
|
|
migrations.AddField(
|
|
model_name="clientpermission",
|
|
name="name",
|
|
field=models.CharField(default="", max_length=255),
|
|
),
|
|
]
|