我是laravel 5的新手,当我尝试迁移时,在我的第一个项目中,我遇到了这个错误:
[Symfony \ Component \ Debug \ Exception \ FatalErrorException]调用 undefined方法Illuminate \ Database \ Schema \ Blueprint :: blob()
答案 0 :(得分:0)
没有这样的方法blob()
。它是binary()
:
$table->binary('data'); // BLOB equivalent for the database