mirror of
https://github.com/django/django.git
synced 2025-08-30 23:37:50 +00:00
Refs #29095 -- Added test for using QuerySet.count() with window expressions ordered by related fields.
Fixed in 3f32154f40
.
This commit is contained in:
parent
227d0c7365
commit
33ec01caaf
2 changed files with 13 additions and 0 deletions
|
@ -1,12 +1,17 @@
|
|||
from django.db import models
|
||||
|
||||
|
||||
class Classification(models.Model):
|
||||
code = models.CharField(max_length=10)
|
||||
|
||||
|
||||
class Employee(models.Model):
|
||||
name = models.CharField(max_length=40, blank=False, null=False)
|
||||
salary = models.PositiveIntegerField()
|
||||
department = models.CharField(max_length=40, blank=False, null=False)
|
||||
hire_date = models.DateField(blank=False, null=False)
|
||||
age = models.IntegerField(blank=False, null=False)
|
||||
classification = models.ForeignKey('Classification', on_delete=models.CASCADE, null=True)
|
||||
|
||||
def __str__(self):
|
||||
return '{}, {}, {}, {}'.format(self.name, self.department, self.salary, self.hire_date)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue