我試圖執行的缺省auth登錄系統laravelLaravel遷移工作不
php artisan make:migration create_users_table
Created Migration: 2016_03_10_115611_create_users_table
在運行上面的命令只會遷移文件被創建,而不是創建表。 此外,我曾嘗試重新安裝的作曲家,但它並沒有運行
php artisan migrate
工作
//In 2016_03_10_115611_create_users_table file
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('users');
}
}
它拍了幾張大量的時間和返回
[ErrorException]PDO::__construct(): MySQL server has gone away
感謝大家對我尚未正確配置.env文件以使其不起作用