harshSoni082 / examination_management

An examination management application
0 stars 2 forks source link

`Grade` app #4

Open harshSoni082 opened 1 year ago

harshSoni082 commented 1 year ago

Description: To create Grade models and APIs.

Todo:

@Deepanshu-iiits-it Let me know if you need the schema for this model.

harshSoni082 commented 1 year ago

@Deepanshu-iiits-it Grade needs to have a different schema as now we need to take the SemesterInstance into account.

harshSoni082 commented 1 year ago
Grade {
    subject -> OneToOne
    student -> ForeignKey
    grade -> string
    credit -> int
}