id(); $table->string('name')->unique()->comment('單位名稱'); $table->string('code')->nullable()->comment('單位代碼 (如: kg)'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('units'); } };