mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:12:51 +00:00
19 lines
554 B
Python
19 lines
554 B
Python
# Generated by Django 4.2.14 on 2024-07-23 18:14
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('setting', '0005_model_permission_type'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='model',
|
|
name='status',
|
|
field=models.CharField(choices=[('SUCCESS', '成功'), ('ERROR', '失败'), ('DOWNLOAD', '下载中'), ('PAUSE_DOWNLOAD', '暂停下载')], default='SUCCESS', max_length=20, verbose_name='设置类型'),
|
|
),
|
|
]
|