You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: add clocked schedule
* fix: rebase master and regen migration
* fix: make ci happy
* style(clocked): change clocked schedule verbose name and help text
* fix: regen migration
('clocked_time', models.DateTimeField(help_text='Run the task at clocked time', verbose_name='Clock Time')),
21
+
('enabled', models.BooleanField(default=True, editable=False, help_text='Set to False to disable the schedule', verbose_name='Enabled')),
22
+
],
23
+
options={
24
+
'verbose_name': 'clocked',
25
+
'verbose_name_plural': 'clocked',
26
+
'ordering': ['clocked_time'],
27
+
},
28
+
),
29
+
migrations.AddField(
30
+
model_name='periodictask',
31
+
name='clocked',
32
+
field=models.ForeignKey(blank=True, help_text='Clocked Schedule to run the task on. Set only one schedule type, leave the others null.', null=True, on_delete=django.db.models.deletion.CASCADE, to='django_celery_beat.ClockedSchedule', verbose_name='Clocked Schedule'),
0 commit comments