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
1004 B
29 lines
1004 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2018-04-02 09:45
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ops', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='CeleryTask',
|
|
fields=[
|
|
('id', models.UUIDField(default=uuid.uuid4, primary_key=True, serialize=False)),
|
|
('name', models.CharField(max_length=1024)),
|
|
('status', models.CharField(choices=[('waiting', 'waiting'), ('running', 'running'), ('finished', 'finished')], max_length=128)),
|
|
('log_path', models.CharField(blank=True, max_length=256, null=True)),
|
|
('date_published', models.DateTimeField(auto_now_add=True)),
|
|
('date_start', models.DateTimeField(null=True)),
|
|
('date_finished', models.DateTimeField(null=True)),
|
|
],
|
|
),
|
|
]
|