bigIncrements('id'); $table->bigInteger('profile_id')->unsigned(); $table->bigInteger('status_id')->unsigned(); // Flag to remove spammy profile_ids $table->boolean('flagged')->default(false); $table->unique(['profile_id', 'status_id']); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('likes'); } }