increments('id'); $table->string('tour_date', 20)->nullable(); $table->string('type', 30)->nullable(); $table->string('time', 20)->nullable(); $table->string('name', 100)->nullable(); $table->string('phone', 20)->nullable(); $table->string('email', 255)->nullable(); $table->text('message')->nullable(); $table->enum('status', ['Yes', 'No'])->nullable(); $table->string('slug', 60)->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 20)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('metropolitan_tour_tours'); } }