i get this error after define 'defaultStringLength'
[Symfony\Component\Debug\Exception\FatalErrorException] Call to undefined method Illuminate\Database\Schema\MySqlBuilder::defaultSt ringLength()
defaultSt ringLength()
You're using an older version of Laravel. You can use this method only since 5.4
You can limit string length manually:
$table->string('name', 100);
Follow this url: https://laravel.com/docs/5.0/schema
defaultSt ringLength()? Please post your code and laravel version too - Shubham Pokhriyal