bigIncrements('id'); $table->string('name'); $table->string('rate', 50); $table->bigInteger('import_id')->nullable()->comment('for import'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('taxes'); } }