This commit is contained in:
2024-12-28 09:44:58 +09:00
parent 5e3ed91b3a
commit 7350989113
11 changed files with 14160 additions and 324 deletions

View File

@@ -0,0 +1,19 @@
# Generated by Django 5.1.4 on 2024-12-27 05:52
import scheduler.models
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('scheduler', '0013_alter_scheduledtask_function_path'),
]
operations = [
migrations.AlterField(
model_name='scheduledtask',
name='function_path',
field=models.CharField(choices=scheduler.models.get_available_functions, max_length=500, verbose_name='Путь к функции (модуль.функция)'),
),
]