3👍
✅
The problem is that the ForeignKey
s you’re defining for Student
have default=False
set. False
is an invalid value for ForeignKey
s. Simply remove those and you should be good.
Source:stackexchange.com