Call to undefined method Illuminate\Database\Schema\MySqlBuilder::defaultStringLength()

后端 未结 5 645
[愿得一人]
[愿得一人] 2021-01-25 09:43

Firstly i was getting an error in

php artisan migrate

as

SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key w

5条回答
  •  死守一世寂寞
    2021-01-25 09:55

    defaultStringLength is introduced in Laravel v5.4. Reference.

    You can update the Laravel version

    OR

    You specify the length as $table->string('coumname', 255); You cannot specify more than 255. If you leave the length parameter it will assign 255 by default

提交回复
热议问题