increments('id'); $table->integer('bus_id')->nullable(); $table->string('source', 255)->nullable(); $table->string('destination', 255)->nullable(); $table->integer('available_sets')->nullable(); $table->integer('sold_sets')->nullable(); $table->integer('total_sets')->nullable(); $table->integer('booking_time')->nullable(); $table->text('ticket_numbers')->nullable(); $table->integer('total_booked_sets')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('booking_managements'); } }