/**
  * Get statement needed to create table.
  *
  * @param AbstractTable $table
  * @return string
  */
 protected function createStatement(AbstractTable $table)
 {
     if (!$table instanceof TableSchema) {
         throw new SchemaException("MySQL commander can process only MySQL tables.");
     }
     return parent::createStatement($table) . " ENGINE {$table->getEngine()}";
 }