bigIncrements('id'); $table->bigInteger('follower_id')->unsigned()->index(); $table->bigInteger('following_id')->unsigned()->index(); $table->string('profile_url')->index(); $table->timestamp('approved_at')->nullable(); $table->unique(['follower_id', 'following_id', 'profile_url']); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('web_subs'); } }