Files
ihrm/leave/migrations/__init__.py

9 lines
259 B
Python

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