increments('id'); $table->string('bus_number', 255)->nullable(); $table->integer('bus_category')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('buses_lists'); } }