id(); $table->string('name'); $table->string('code', 10)->unique(); $table->string('symbol', 10)->nullable(); $table->text('description')->nullable(); $table->boolean('is_default')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('currencies'); } };