Reputation: 85
i get this error after define 'defaultStringLength'
[Symfony\Component\Debug\Exception\FatalErrorException]
Call to undefined method Illuminate\Database\Schema\MySqlBuilder::defaultSt ringLength()
Upvotes: 0
Views: 152
Reputation: 4040
Follow this url: https://laravel.com/docs/5.0/schema
$table->string('name', 100);
Upvotes: 0
Reputation: 163948
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);
Upvotes: 2