Laravel 5 迁移创建 table,出现错误 class 'illuminate\database\schema' 未找到
Laravel 5 migration create table, got error class 'illuminate\database\schema' not found
当我 运行 php artisan migrate
时,出现以下错误:
[Symfony\Component\Debug\Exception\FatalErrorException]
Class 'Illuminate\database\schema' not found
我该如何解决这个问题?
没有 Illuminate\Database\Schema
,您很可能想使用 Illuminate\Support\Facades\Schema
。
当我 运行 php artisan migrate
时,出现以下错误:
[Symfony\Component\Debug\Exception\FatalErrorException]
Class 'Illuminate\database\schema' not found
我该如何解决这个问题?
没有 Illuminate\Database\Schema
,您很可能想使用 Illuminate\Support\Facades\Schema
。