id(); $table->string('name'); $table->string('slug')->unique(); $table->foreignId('platform_id')->constrained('platforms')->restrictOnDelete(); $table->foreignId('genre_id')->constrained('genres')->restrictOnDelete(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('games'); } };