increments('id'); $table->string('country', 100); $table->string('currency', 100); $table->string('code', 25); $table->string('symbol', 25); $table->string('thousand_separator', 10); $table->string('decimal_separator', 10); $table->nullableTimestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('currencies'); } };