id(); $table->timestamps(); $table->string("path"); $table->string("driver"); $table->string("filename"); $table->integer("size"); $table->timestamp("uploaded_at")->default(\Illuminate\Support\Facades\DB::raw('CURRENT_TIMESTAMP')); $table->timestamp("deleted_at")->nullable(); $table->unsignedBigInteger("gallery"); $table->foreign('gallery')->references('id')->on('galleries'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists("images"); } }