Answers for "specify length schema laravel 6"

PHP
3

laravel schema default string length

use IlluminateSupportFacadesSchema;

public function boot()
{
    Schema::defaultStringLength(191);
}
Posted by: Guest on June-21-2020

Browse Popular Code Answers by Language