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