mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
796 B
29 lines
796 B
# Generated by Django 3.2.14 on 2022-11-18 06:31
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ops', '0032_auto_20221117_1848'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='job',
|
|
name='crontab',
|
|
field=models.CharField(blank=True, max_length=128, null=True, verbose_name='Regularly perform'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='job',
|
|
name='interval',
|
|
field=models.IntegerField(blank=True, default=24, null=True, verbose_name='Cycle perform'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='job',
|
|
name='is_periodic',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|