id(); $table->string("filename")->unique(); $table->timestamps(); $table->foreignid("extension_id")->constrained("resource_extensions", "id"); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('resources'); } }