我正在遵循默认文档和Laracst教程来构建应用程序。以下是来源https://github.com/nasirkhan/laravel-5-starter-application
在此源代码中安装新的实例表单会显示以下错误,有人可以帮助我在此处找到问题吗?
我运行以下命令,
git pull git@github.com:nasirkhan/laravel-5-starter-application.git
composer install
然后我收到以下错误。
收到错误后我试图运行php artisan migrate
,但错误未解决。
[Illuminate\Database\QueryException] SQLSTATE[42S02]: Base table or view not found: 1146 Table 'laravel-5-starter.permissions' doesn't exist (SQL: select * from `permissions`) [PDOException] SQLSTATE[42S02]: Base table or view not found: 1146 Table 'laravel-5-starter.permissions' doesn't exist Script php artisan clear-compiled handling the post-install-cmd event returned with an error [RuntimeException] Error Output:
答案 0 :(得分:2)
找到了solution。更新了回购,感谢您的参与。
答案 1 :(得分:1)
从控制台运行php artisan migrate
。似乎有一个查询但尚不存在的权限表。
在文件2015_09_10_193651_create_roles_tables.php
中创建表格as you can see here。