diff --git a/doc/第五周小组任务个人完成部分.docx b/doc/第五周小组任务个人完成部分.docx new file mode 100644 index 0000000..2709b83 Binary files /dev/null and b/doc/第五周小组任务个人完成部分.docx differ diff --git a/src/django-master/comments/migrations/0002_alter_comment_is_enable.py b/src/django-master/comments/migrations/0002_alter_comment_is_enable.py index 17c44db..a149ad4 100644 --- a/src/django-master/comments/migrations/0002_alter_comment_is_enable.py +++ b/src/django-master/comments/migrations/0002_alter_comment_is_enable.py @@ -5,14 +5,14 @@ from django.db import migrations, models class Migration(migrations.Migration): - dependencies = [ - ('comments', '0001_initial'), - ] + dependencies = [ + ('comments', '0001_initial'), + ] - operations = [ - migrations.AlterField( - model_name='comment', - name='is_enable', - field=models.BooleanField(default=False, verbose_name='是否显示'), - ), +operations = [ + migrations.AlterField( + model_name='comment', + name='is_enable', + field=models.BooleanField(default=False, verbose_name='是否显示'), + ), ]