id(); $table->string('lastname'); $table->string('firstname'); $table->string('middlename'); $table->string('passport_data', 10); $table->date('birth_date'); $table->enum('gender', ['male', 'female']); $table->string('email'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('clients'); } }