mirror of
https://github.com/django/django.git
synced 2025-11-25 21:22:14 +00:00
Fixed #30044 -- Raised a FieldError on inherited field update attempts.
This commit is contained in:
parent
4fc35a9c3e
commit
9e5e5a657b
3 changed files with 13 additions and 2 deletions
|
|
@ -15,6 +15,10 @@ class Employee(models.Model):
|
|||
return '%s %s' % (self.firstname, self.lastname)
|
||||
|
||||
|
||||
class RemoteEmployee(Employee):
|
||||
adjusted_salary = models.IntegerField()
|
||||
|
||||
|
||||
class Company(models.Model):
|
||||
name = models.CharField(max_length=100)
|
||||
num_employees = models.PositiveIntegerField()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue