id(); $table->integer("customer_id")->nullable(); $table->string("name")->nullable(); $table->string("sex")->nullable(); $table->integer("age")->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('patient'); } }