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.
30 lines
971 B
Python
30 lines
971 B
Python
# 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"),
|
|
),
|
|
},
|
|
),
|
|
]
|