added migrations for objects
rebuild requirements.txt
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
# Generated by Django 5.2.3 on 2025-07-09 12:51
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("accounts", "0005_alter_depotuser_managers_alter_depotuser_user_type"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name="clientpermission",
|
||||
options={
|
||||
"default_permissions": (),
|
||||
"managed": True,
|
||||
"permissions": (
|
||||
("can_view_booking", "Can view booking"),
|
||||
("can_manage_booking", "Can book container"),
|
||||
("can_view_preinfo", "Can view preinfo"),
|
||||
("can_manage_preinfo", "Can manage preinfo"),
|
||||
("can_view_payment", "Can view payment"),
|
||||
("can_manage_payment", "Can manage payment"),
|
||||
("can_manage_company_users", "Can manage company users"),
|
||||
),
|
||||
},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user