Changes between Version 1 and Version 2 of CreatingCourse
- Timestamp:
- 01/22/26 03:57:39 (15 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CreatingCourse
v1 v2 3 3 ==== Actors: **Instructor (INSTRUCTOR)** 4 4 5 **1.** The instructor selects New Course. 6 7 **2.** The instructor enters basic information. 8 9 **3.** The system creates the course. 5 **1.** Course Creation. 10 6 11 7 {{{#!sql 12 8 INSERT INTO course (name, price, status, instructor_id) 13 VALUES ( 'Spring Boot Fundamentals', 99.99, 'ACTIVE', 5);9 VALUES (:name, :price, 'ACTIVE', :instructorId); 14 10 15 11 }}} 12 13 14 **2.** Assigning Categories to the Course. 15 16 17 {{{#!sql 18 INSERT INTO course_category (course_id, category_id) 19 VALUES (:courseId, :categoryId); 20 21 }}}
