increments('id'); $table->string('name', 244)->nullable(); $table->string('email', 255)->nullable(); $table->string('mobile', 255)->nullable(); $table->integer('user_id')->nullable(); $table->string('source', 255)->nullable(); $table->string('destination', 255)->nullable(); $table->date('date')->nullable(); $table->string('time', 255)->nullable(); $table->integer('transport_partner')->nullable(); $table->integer('bus_category')->nullable(); $table->string('boarding', 255)->nullable(); $table->string('dropping', 255)->nullable(); $table->integer('bus_id')->nullable(); $table->string('ticket_seat', 255)->nullable(); $table->text('ticket_numbers')->nullable(); $table->integer('ticket_count')->nullable(); $table->string('transaction_id', 255)->nullable(); $table->integer('payment_status')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('booking_managements'); } }