id(); $table->unsignedBigInteger('operation_id'); $table->timestamps(); $table->string('gambar'); //kalo laravel basically nyimpen nama file doang $table->string('kategori'); //isinya bisa string 'pre', 'in', 'post' $table->foreign('operation_id')->references('id')->on('operations'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('photos'); } };