id(); $table->string('name'); $table->json('data_form')->nullable(); $table->json('foto_form')->nullable(); $table->json('denah_form')->nullable(); $table->unsignedBigInteger('permohonan_id'); $table->boolean('status')->default(true); $table->char('authorized_status', 1)->nullable(); $table->timestamps(); $table->timestamp('authorized_at')->nullable(); $table->unsignedBigInteger('authorized_by')->nullable(); $table->softDeletes(); $table->unsignedBigInteger('created_by')->nullable(); $table->unsignedBigInteger('updated_by')->nullable(); $table->unsignedBigInteger('deleted_by')->nullable(); $table->foreign('permohonan_id')->references('id')->on('permohonan')->onDelete('cascade'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('inspeksi'); } };