added migrations for objects
rebuild requirements.txt
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
# 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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user