27 lines
891 B
Python
27 lines
891 B
Python
# Generated by Django 3.0.7 on 2020-09-03 03:19
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('project', '0027_auto_20200825_1636'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='project',
|
|
name='assign_by',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='project',
|
|
name='assign_date',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='project',
|
|
name='status',
|
|
field=models.CharField(choices=[('创建中', '创建中'), ('待策划', '待策划'), ('策划中', '策划中'), ('审核任务已下达', '审核任务已下达'), ('审核任务已接受', '审核任务已接受'), ('现场审核中', '现场审核中')], default='创建中', max_length=50, verbose_name='项目状态'),
|
|
),
|
|
]
|