id(); $table->string('customer_number'); $table->string('name'); $table->string('phone'); $table->string('address'); $table->enum('gender_id', [1, 2]); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('customers'); } };