increments('id'); $table->string('name'); $table->string('symbol',2)->nullable(); $table->string('threecode',3); $table->boolean('active'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('currencies'); } }