id(); $table->timestamps(); $table->softDeletes(); $table->string('nama'); $table->string('kode'); $table->string('alamat'); $table->string('telepon'); $table->string('email'); $table->boolean('is_default')->default(false); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('master_uml'); } };