increments('id'); $table->unsignedInteger('user_id')->nullable()->index(); $table->string('identifier')->index(); $table->string('filename'); $table->string('dir'); $table->string('original_name'); $table->string('ext'); $table->string('mine'); $table->unsignedInteger('size'); $table->timestamps(); $table->foreign('user_id') ->references('id') ->on('users') ->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('files'); } }