File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1+ # Generated by Django 5.2 on 2025-08-11 01:15
2+
3+ from django .db import migrations
4+
5+
6+ class Migration (migrations .Migration ):
7+ dependencies = [("sponsor" , "0016_alter_sponsor_options_and_more" )]
8+
9+ operations = [
10+ migrations .AlterModelOptions (
11+ name = "sponsor" ,
12+ options = {"ordering" : ["fixed_at" , "name" ]},
13+ ),
14+ ]
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class Sponsor(BaseAbstractModel):
1919 fixed_at = models .DateTimeField (null = True , blank = True )
2020
2121 class Meta :
22- ordering = ["- fixed_at" , "name" ]
22+ ordering = ["fixed_at" , "name" ]
2323 indexes = [models .Index (fields = ["event" , "fixed_at" ], name = "idx__spsr__event_fixed_at" )]
2424 constraints = [
2525 models .UniqueConstraint (
You can’t perform that action at this time.
0 commit comments