19 lines
533 B
Python
19 lines
533 B
Python
# Generated by Django 6.0.1 on 2026-02-27 06:43
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('community', '0014_alter_topic_options_topic_order'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='topic',
|
|
name='status',
|
|
field=models.CharField(choices=[('pending', '待审核'), ('published', '已发布'), ('rejected', '已拒绝')], default='published', max_length=20, verbose_name='状态'),
|
|
),
|
|
]
|