20 lines
510 B
Python
20 lines
510 B
Python
# Generated by Django 6.0 on 2026-04-23 20:07
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('announcement', '0001_initial'),
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddIndex(
|
|
model_name='announcement',
|
|
index=models.Index(fields=['visible', '-top', '-create_time'], name='announcement_list_idx'),
|
|
),
|
|
]
|