increments('id'); $table->integer('user_id', false, true); $table->uuid('flight_id'); $table->timestamps(); $table->index('user_id'); $table->index(['user_id', 'flight_id']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('user_bids'); } }