id('JenisKegiatanId'); $table->string('NamaJenisKegiatan'); $table->boolean('IsPublish')->default(1); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('JenisKegiatan'); } };