mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-31 18:22:49 +00:00
19 lines
420 B
Python
19 lines
420 B
Python
# Generated by Django 5.2.1 on 2025-05-14 03:27
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('tools', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='toolfolder',
|
|
name='desc',
|
|
field=models.CharField(blank=True, max_length=200, null=True, verbose_name='描述'),
|
|
),
|
|
]
|