how to set db table type in laravel

Solutions on MaxInterview for how to set db table type in laravel by the best coders in the world

showing results for - "how to set db table type in laravel"
Said
26 Feb 2019
1Schema::create('users', function (Blueprint $table) {
2    $table->engine = 'InnoDB';
3
4    // ...
5});