Answers for "how to set db table type in laravel"

PHP
0

how to set db table type in laravel

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

    // ...
});
Posted by: Guest on March-06-2021

Browse Popular Code Answers by Language