18 lines
454 B
Python
18 lines
454 B
Python
# Generated by Django 5.1.4 on 2024-12-28 00:49
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('scheduler', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='scheduledtask',
|
|
options={'verbose_name': 'Запланированная задача', 'verbose_name_plural': 'Запланированные задачи'},
|
|
),
|
|
]
|