increments('id'); $table->integer('bus_id')->nullable(); $table->date('journey_date')->nullable(); $table->text('ticket_seats')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('ticket_systems'); } }