bigIncrements('id'); $table->bigInteger('group_id')->unsigned()->index(); $table->bigInteger('from_profile_id')->unsigned()->index(); $table->bigInteger('to_profile_id')->unsigned()->index(); $table->string('role')->nullable(); $table->boolean('to_local')->default(true)->index(); $table->boolean('from_local')->default(true)->index(); $table->unique(['group_id', 'to_profile_id']); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('group_invitations'); } }