19 lines
428 B
Python
19 lines
428 B
Python
# 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='评分'),
|
|
),
|
|
]
|