Как установить тип таблицы DB в Laravel

Schema::create('users', function (Blueprint $table) {
    $table->engine = 'InnoDB';

    // ...
});
Grotesque Giraffe