id(); $table->string('kode')->unique(); $table->string('nama_metode'); $table->unsignedInteger('interest'); // Angka non-negatif }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('metode'); } };