id(); $table->string('name', 64); $table->string('code', 16); $table->string('symbol_left', 16); $table->string('symbol_right', 16); $table->char('decimal_place', 1); $table->double('value', 15, 8); $table->tinyInteger('status'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('currencies'); } }