增加阅读笔记

This commit is contained in:
2026-01-05 23:11:41 +08:00
parent 11ec013070
commit 57a7a30bc8
10 changed files with 28 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.1.4 on 2026-01-05 15:09
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0002_familytasktype_plantype_priority_readingtype_status_and_more'),
]
operations = [
migrations.AddField(
model_name='readingrecord',
name='note',
field=models.TextField(blank=True, null=True, verbose_name='阅读笔记'),
),
]