id(); $table->string("name"); $table->string("address"); $table->string("telephone"); $table->string("email")->nullable(); $table->string("npwp"); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists("companies"); } };