0% found this document useful (0 votes)
13 views2 pages

Edu App Database Shcema

The document describes the schema for a student course enrollment system. It includes tables for courses, students, lessons, quizzes, questions, and the relationships between them (e.g. what course a student is enrolled in, what lessons and quizzes are associated with a course). Each table specifies the column names and data types.

Uploaded by

Mouhamed Islem
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views2 pages

Edu App Database Shcema

The document describes the schema for a student course enrollment system. It includes tables for courses, students, lessons, quizzes, questions, and the relationships between them (e.g. what course a student is enrolled in, what lessons and quizzes are associated with a course). Each table specifies the column names and data types.

Uploaded by

Mouhamed Islem
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Course Student Enrollment Instructor

id int 1 id int 1 id int 1 id int

name varchar(255) name varchar(255) * course_id int name varchar(255)

description text email varchar(255) * student_id int email varchar(255)

duration int created_at datetime enrolled_at datetime created_at datetime

created_at datetime

Lesson Quiz Question

CourseInstructor id int 1 id int 1 1 id int

id int * course_id int * lesson_id int * quiz_id int

course_id int * title varchar(255) title varchar(255) content text

instructor_id int * content text created_at datetime created_at datetime

created_at datetime

Option

id int

question_id int *

content text

is_correct bool

created_at datetime
Course Student Enrollment Instructor

id int 1 id int 1 id int 1 id int

name varchar(255) name varchar(255) * course_id int name varchar(255)

description text email varchar(255) * student_id int email varchar(255)

duration int created_at datetime enrolled_at datetime created_at datetime

created_at datetime

Lesson Quiz Question

CourseInstructor id int 1 id int 1 1 id int

id int * course_id int * lesson_id int * quiz_id int

course_id int * title varchar(255) title varchar(255) content text

instructor_id int * content text created_at datetime created_at datetime

created_at datetime

Option

id int

question_id int *

content text

is_correct bool

created_at datetime

You might also like