增加阅读笔记
This commit is contained in:
18
core/migrations/0003_readingrecord_note.py
Normal file
18
core/migrations/0003_readingrecord_note.py
Normal 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='阅读笔记'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user