39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
# Generated by Django 5.2.7 on 2025-10-25 14:02
|
|
|
|
import django.db.models.deletion
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
initial = True
|
|
|
|
dependencies = [
|
|
("accessibility", "0001_initial"),
|
|
("employee", "0001_initial"),
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="defaultaccessibility",
|
|
name="employees",
|
|
field=models.ManyToManyField(
|
|
blank=True, related_name="default_accessibility", to="employee.employee"
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="defaultaccessibility",
|
|
name="modified_by",
|
|
field=models.ForeignKey(
|
|
blank=True,
|
|
editable=False,
|
|
null=True,
|
|
on_delete=django.db.models.deletion.SET_NULL,
|
|
related_name="%(class)s_modified_by",
|
|
to=settings.AUTH_USER_MODEL,
|
|
verbose_name="Modified By",
|
|
),
|
|
),
|
|
]
|