unique('key'); } ); } /** * Reverse the migrations. */ public function down(): void { Schema::table( 'cache', function (Blueprint $table) { $table->dropUnique('cache_key_unique'); } ); } };