From 47ebdc982c6a3b19db3f6ae1acac6d336ade1124 Mon Sep 17 00:00:00 2001 From: yangjian Date: Tue, 15 Dec 2020 20:50:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=BA=93=E5=8F=98=E6=9B=B4?= =?UTF-8?q?=E7=9A=84=E8=BF=81=E7=A7=BB=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app_doc/migrations/0034_doc_show_children.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app_doc/migrations/0034_doc_show_children.py diff --git a/app_doc/migrations/0034_doc_show_children.py b/app_doc/migrations/0034_doc_show_children.py new file mode 100644 index 0000000..1a2c273 --- /dev/null +++ b/app_doc/migrations/0034_doc_show_children.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.12 on 2020-12-15 19:54 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('app_doc', '0033_doc_open_children'), + ] + + operations = [ + migrations.AddField( + model_name='doc', + name='show_children', + field=models.BooleanField(default=False, verbose_name='显示下级文档'), + ), + ]