Files
ihrm/leave/migrations/__init__.py

6 lines
225 B
Python

from leave.models import EmployeePastLeaveRestrict
enabled_restriction = EmployeePastLeaveRestrict.objects.first()
if not enabled_restriction:
enabled_restriction = EmployeePastLeaveRestrict.objects.create(enabled=True)