20 lines
464 B
Python
20 lines
464 B
Python
# Generated by Django 5.0.2 on 2024-02-22 11:49
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('hrm', '0018_absence_days_is_holiday_absence_days_is_request_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='company',
|
|
name='year_start_date',
|
|
field=models.DateField(default=datetime.date(1971, 1, 1)),
|
|
),
|
|
]
|