独角鲸同步合作方公司数据项目
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.

30 lines
1.0 KiB

# Generated by Django 3.1.4 on 2025-02-21 17:23
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='TasksConsloe',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('task', models.CharField(blank=True, max_length=500, null=True, verbose_name='任务')),
('content', models.CharField(blank=True, max_length=500, null=True, verbose_name='内容')),
('start_time', models.DateTimeField(auto_now_add=True, verbose_name='执行时间')),
('finish_time', models.DateTimeField(auto_now_add=True, verbose_name='结束时间')),
],
options={
'verbose_name': '任务输出',
'verbose_name_plural': '任务输出',
'ordering': ['id'],
},
),
]