18 lines
413 B
Python
18 lines
413 B
Python
|
# Generated by Django 5.1.5 on 2025-01-25 21:29
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('dispatcher', '0003_task_name'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddConstraint(
|
||
|
model_name='task',
|
||
|
constraint=models.UniqueConstraint(fields=('date', 'project', 'name'), name='unique_daily_task'),
|
||
|
),
|
||
|
]
|