Laravel 执行 php artisan migrate
命令时,报错:
1 | Illuminate\Database\QueryException : SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' already exists (SQL: create table `users` (`id` int unsigned not null auto_increment primary key, |
小峰的博客
Laravel 执行 php artisan migrate
命令时,报错:
1 | Illuminate\Database\QueryException : SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' already exists (SQL: create table `users` (`id` int unsigned not null auto_increment primary key, |
在安装了 VirtualBox 后,VMware原本通过桥接模式联网的机器,无法获得正常IP。经过查询资料,发现原因是 VMware 桥接到 VirtualBox 的虚拟网卡了
解决方法:
在 GitHub仓库 clone 一个laravel项目
git clone https://github.com/xinyflove/laravel-blog.git
克隆下来的项目是没有vendor
目录的,我们需要在项目根目录下运行:
1 | $ composer install |