id(); $table->string('country')->nullable(); $table->string('currency_code')->nullable(); $table->string('currency_symbol')->nullable(); $table->decimal('exchange_rate')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('currencies'); } }