dbfdg id(); $table->integer('track_id')->default(0); $table->integer('user_id')->default(0); $table->string('img_path')->nullable(); $table->dateTime('time')->nullable(); $table->string('status')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('track_photos'); } }