id(); $table->string('name'); $table->string('code', 10)->index(); $table->string('symbol', 25); $table->string('format', 50); $table->string('exchange_rate')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('currencies'); } };