Skip to content

Commit c739e34

Browse files
committed
fix: fixed_at 최신순으로 변경
Signed-off-by: SaJH <wogur981208@gmail.com>
1 parent d036021 commit c739e34

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/event/sponsor/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Sponsor(BaseAbstractModel):
1919
fixed_at = models.DateTimeField(null=True, blank=True)
2020

2121
class Meta:
22-
ordering = ["name", "fixed_at"]
22+
ordering = ["name", "-fixed_at"]
2323
constraints = [
2424
models.UniqueConstraint(
2525
fields=["event", "name"],

0 commit comments

Comments
 (0)