Changes between Initial Version and Version 1 of Ticket #33004, comment 8
- Timestamp:
- Sep 6, 2021, 6:25:49 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33004, comment 8
initial v1 1 1 The code I defined is as follows. I have verified that the data already exists in the database after I save the object of Grade, but I can not use it to save the object of Stu. 2 2 {{{ 3 3 class Grade(models.Model): 4 4 id = models.IntegerField(primary_key=True) … … 44 44 45 45 In [22]: stu.save() 46 47 In [23]: 46 }}}