diff --git a/app/Models/PhotoJob.php b/app/Models/PhotoJob.php new file mode 100644 index 0000000..7df7754 --- /dev/null +++ b/app/Models/PhotoJob.php @@ -0,0 +1,10 @@ +id(); + $table->string('image_path'); + $table->string('status')->default('pending'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('photo_jobs'); + } +};