Créer une table avec une colonne de date

Je veux créer une table des étudiants avec la colonne "student_birthday" et son format dd-mm-yy.

create table `student`.`studentinfo`(
    `student_id` int(10) not null auto_increment,
    `student_name` varchar(45) not null,
    `student_surname` varchar(45) not null,
    `student_birthday` date(???),
    (some lines of code)
primary key(student_id));

ce qui devrait être introduite dans le (???) pour obtenir le bon format ci-dessus?

InformationsquelleAutor realheaven | 2015-01-20