bigIncrements('id'); $table->string('lastname'); $table->string('name'); $table->string('patronymic'); $table->string('gender'); $table->string('phone'); $table->string('email'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('clients'); } }