diff --git a/Exam/Sda1/RdbmsStudents2xml/rdbmsStudents2xml_solution/Schema/schema.sql b/Exam/Sda1/RdbmsStudents2xml/rdbmsStudents2xml_solution/Schema/schema.sql
index 5867d4df1ddfd5b832ec41fa35fa8ca2fa99ee4f..4110c70bc022220e570edc2a05d3b905e3520c30 100644
--- a/Exam/Sda1/RdbmsStudents2xml/rdbmsStudents2xml_solution/Schema/schema.sql
+++ b/Exam/Sda1/RdbmsStudents2xml/rdbmsStudents2xml_solution/Schema/schema.sql
@@ -7,7 +7,7 @@ CREATE TABLE StudyCourse (
   ,shortName CHAR(3) UNIQUE
   ,program CHAR(1) /* Bachelor or Master program? */
   ,CHECK (program IN ('B', 'M')) /* Mysql does not really honour CHECK constraints, but pretend it does! */
-) ENGINE=InnoDB;
+);
 
 CREATE TABLE Student (
    id INTEGER NOT NULL PRIMARY KEY
@@ -15,7 +15,7 @@ CREATE TABLE Student (
   ,email VARCHAR(255) NOT NULL UNIQUE
   ,studyCourse INTEGER
   ,FOREIGN KEY(studyCourse) REFERENCES StudyCourse(id)
-) ENGINE=InnoDB;
+);
 
 -- example data corresponding to university.xml --