id('MsActivityId'); $table->string('kode')->nullable(); $table->string('nama')->nullable(); $table->string('unit_category')->nullable(); $table->integer('nomor_baris'); $table->text('deskripsi')->nullable(); $table->integer('status')->default(0); $table->timestampsTz(); $table->softdeletesTz(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('ms_activity'); } };