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.
32 lines
897 B
32 lines
897 B
# Generated by Django 2.1 on 2018-12-19 10:07
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ops', '0004_adhoc_run_as'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='task',
|
|
name='date_created',
|
|
field=models.DateTimeField(auto_now_add=True, db_index=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='adhoc',
|
|
name='date_created',
|
|
field=models.DateTimeField(auto_now_add=True, db_index=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='celerytask',
|
|
name='status',
|
|
field=models.CharField(
|
|
choices=[('waiting', 'waiting'), ('running', 'running'),
|
|
('finished', 'finished')], db_index=True,
|
|
max_length=128),
|
|
),
|
|
]
|