id(); $table->foreignId('jabatan_id')->nullable()->constrained('jabatan')->nullOnDelete(); $table->string('kod')->unique(); $table->string('nama'); $table->text('penerangan')->nullable(); $table->boolean('status')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('vot'); } };