dropUnique('users_email_unique'); $table->string('email')->nullable()->change(); $table->string('mobile', 16)->nullable()->comment('手机号'); $table->string('staff_num', 20)->unique()->comment('用户编码'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { // }); } }