id(); $table->integer("pin"); $table->string("name"); $table->string("email"); $table->string("updated_by"); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('pbx_pins'); } }