Commit ac1513fc authored by Ben Anderson's avatar Ben Anderson

Added index to email column in student_details table

parent 678277ca
...@@ -5,6 +5,7 @@ CREATE TABLE student_details ...@@ -5,6 +5,7 @@ CREATE TABLE student_details
first_name VARCHAR(100) NOT NULL, first_name VARCHAR(100) NOT NULL,
last_name VARCHAR(100) NOT NULL, last_name VARCHAR(100) NOT NULL,
date_of_birth DATE NOT NULL, date_of_birth DATE NOT NULL,
course VARCHAR(100) NOT NULL course VARCHAR(100) NOT NULL,
);
INDEX (email)
);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment