You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATEDATABASEonline_learning_platform;
USE online_learning_platform;
CREATETABLEusers (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(100) NOT NULL,
email VARCHAR(100) UNIQUE NOT NULL,
password VARCHAR(255) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
CREATETABLEcourses (
id INT AUTO_INCREMENT PRIMARY KEY,
title VARCHAR(255) NOT NULL,
description TEXTNOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
CREATETABLEquizzes (
id INT AUTO_INCREMENT PRIMARY KEY,
course_id INTNOT NULL,
question TEXTNOT NULL,
option_a VARCHAR(255) NOT NULL,
option_b VARCHAR(255) NOT NULL,
option_c VARCHAR(255) NOT NULL,
option_d VARCHAR(255) NOT NULL,
correct_option CHAR(1) NOT NULL,
FOREIGN KEY (course_id) REFERENCES courses(id) ON DELETE CASCADE
);