Files

19 lines
428 B
Python
Raw Permalink Normal View History

2026-04-14 11:57:24 +00:00
# Generated by Django 4.2.11 on 2026-04-14 11:54
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('diary', '0005_comment'),
]
operations = [
migrations.AddField(
model_name='comment',
name='score',
field=models.IntegerField(blank=True, help_text='1-10 分', null=True, verbose_name='评分'),
),
]