38156-vm/core/migrations/0004_payrollrecord.py
Flatlogic Bot bcf2bc58dd ver 4
2026-02-03 20:11:39 +00:00

27 lines
1.0 KiB
Python

# Generated by Django 5.2.7 on 2026-02-03 17:44
import django.db.models.deletion
import django.utils.timezone
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0003_project_is_active_team_is_active_worker_is_active'),
]
operations = [
migrations.CreateModel(
name='PayrollRecord',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('date', models.DateField(default=django.utils.timezone.now)),
('amount', models.DecimalField(decimal_places=2, max_digits=10)),
('created_at', models.DateTimeField(auto_now_add=True)),
('work_logs', models.ManyToManyField(related_name='paid_in', to='core.worklog')),
('worker', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='payroll_records', to='core.worker')),
],
),
]