id(); $table->string('name'); $table->string('path'); $table->string('extension'); $table->string('mime_type'); $table->morphs('uploadable'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('uploads'); } }