increments('id'); $table->string('bus_name', 255)->nullable(); $table->string('source', 255)->nullable(); $table->string('destination', 255)->nullable(); $table->date('date')->nullable(); $table->time('time')->nullable(); $table->integer('total_tickets')->nullable(); $table->integer('sold_tickets')->nullable(); $table->integer('available_tickets')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('booking_systems'); } }