Changes between Initial Version and Version 1 of Ticket #33004, comment 8


Ignore:
Timestamp:
Sep 6, 2021, 6:25:49 AM (3 years ago)
Author:
Tim Graham

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33004, comment 8

    initial v1  
    11The 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{{{
    33class Grade(models.Model):
    44    id = models.IntegerField(primary_key=True)
     
    4444
    4545In [22]: stu.save()
    46 
    47 In [23]:
     46}}}
Back to Top