id(); $table->integer('user_id'); $table->integer('image_type_id'); $table->string('image_path',100)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('uploadmedia'); } }