id(); $table->string('name', 50)->unique(); $table->string('symbol', 10)->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('units'); } };