bigIncrements('id'); // $table->string("name"); // $table->string("email")->nullable(); // $table->string("phone_number")->nullable(); // $table->enum("gender", ["male", "female"])->nullable(); // $table->date("date_of_birth")->nullable(); // $table->bigInteger('province_id')->nullable(); // $table->bigInteger('city_id')->nullable(); // $table->bigInteger('subdistrict_id')->nullable(); // $table->bigInteger('subdistrict_area_id')->nullable(); // $table->text("address")->nullable(); // $table->timestamps(); // }); } /** * Reverse the migrations. * * @return void */ public function down() { // Schema::dropIfExists('customers'); } }