Changes between Version 3 and Version 4 of UC3001


Ignore:
Timestamp:
06/25/26 15:35:16 (8 hours ago)
Author:
216009
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UC3001

    v3 v4  
    31315. If not enrolled, system inserts the enrollment record:
    3232{{{
    33 INSERT INTO Student_Subject(Student_Id, Subject_Id, Professor_Id, Status, Enrollment_Date, Absences_Count)
    34 VALUES (:student_id, :subject_id, :professor_id, 'PASSED', :enrollment_date, 0);
     33INSERT INTO Student_Subject (Ss_Id, Student_Id, Subject_Id, Professor_Id, Status, Enrollment_Date, Absences_Count)
     34VALUES (:ss_id, :student_id, :subject_id, :professor_id, 'Enrolled', :enrollment_date, 0);
    3535}}}
    3636