我创建了一个迁移
Schema::create('roles', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('label')->nullable();
$table->timestamps();
});
Schema::create('permissions', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('label')->nullable();
$table->timestamps();
});
Schema::create('permission_role', function (Blueprint $table) {
$table->integer('role_id')->unsigned();
$table->foreign('role_id')->references('id')->on('roles')->onDelete('cascade');
$table->integer('permission_id')->unsigned();
$table->foreign('permission_id')->references('id')->on('permissions')->onDelete('cascade');
$table->primary(['role_id' , 'permission_id']);
});
Schema::create('role_user', function (Blueprint $table) {
$table->integer('role_id')->unsigned();
$table->foreign('role_id')->references('id')->on('roles')->onDelete('cascade');
$table->integer('user_id')->unsigned();
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
$table->primary(['role_id' , 'user_id']);
});
我在CMD中写的任何内容php artisan migrate and composer dumpautoload and php artisan serve and...
可以看到此错误。我也删除了数据库,并创建了一个新的数据库。
[照亮\数据库\ QueryException] SQLSTATE [42S02]:未找到基表或视图:1146表' prj_roocket.permissions'不存在(SQL:select * from
permissions
)[PDOException] SQLSTATE [42S02]:找不到基表或视图:1146 表' prj_roocket.permissions'不存在
答案 0 :(得分:3)
此错误由 AuthServiceProvider 中的 getPermissions 功能(或您定义身份验证服务提供商的其他位置)提供。
很可能你的功能看起来像这样:
protected function getPermissions()
{
return Permission::with('roles')->get();
}
尝试将函数 getPermissions 替换为:
protected function getPermissions()
{
try {
return Permission::with('roles')->get();
} catch (\Exception $e) {
return [];
}
}
然后再次运行 php artisan migrate 。
注意:使用此修复程序,您不会破坏系统安全性。