Skip to content

Commit 49f13f0

Browse files
committed
remove unsupported usage of nulls_first
1 parent 99c5fbd commit 49f13f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ordering/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class Meta:
5050
class OrderedByFArticle(Article):
5151
class Meta:
5252
proxy = True
53-
ordering = (models.F("author").asc(nulls_first=True), "id")
53+
ordering = (models.F("author").asc(), "id")
5454

5555

5656
class ChildArticle(Article):

0 commit comments

Comments
 (0)