unique('name'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('tags', function (Blueprint $table) { $table->dropUnique(['name']); }); } }