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