increments('id'); $table->string('name', 255)->nullable(); $table->string('email', 255)->nullable(); $table->string('phone', 20)->nullable(); $table->string('date', 20)->nullable(); $table->text('message')->nullable(); $table->enum('status', ['Yes', 'No'])->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('prajna_appointment_appointments'); } }