string('anzeigename',20)->unique(); $table->string('telefon',20); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table){ $table->dropColumn(['anzeigename','telefon']); }); } }