dropUnique('users_email_unique'); $table->string('email')->nullable()->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->string('email')->change()->unique(); }); } };