new
All checks were successful
Deploy to Server / deploy (push) Successful in 36s

This commit is contained in:
jeremygan2021
2026-02-25 00:33:34 +08:00
parent 21f01fb0c4
commit 96c12b9e58
8 changed files with 71 additions and 20 deletions

View File

@@ -0,0 +1,22 @@
# Generated by Django 6.0.1 on 2026-02-24 16:30
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('community', '0012_activity_is_visible'),
]
operations = [
migrations.AlterModelOptions(
name='reply',
options={'ordering': ['-is_pinned', '-created_at'], 'verbose_name': '帖子回复', 'verbose_name_plural': '帖子回复管理'},
),
migrations.AddField(
model_name='reply',
name='is_pinned',
field=models.BooleanField(default=False, verbose_name='置顶'),
),
]