increments('id'); $table->string('name')->nullable(); $table->string('description')->nullable(); $table->string('disk'); $table->string('path'); $table->integer('size'); $table->integer('user_id')->nullable(); $table->timestamps(); }); } } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('uploads'); } }