increments('id'); $table->bigInteger('status_id')->unsigned(); $table->bigInteger('profile_id')->unsigned(); $table->unique(['status_id', 'profile_id']); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('bookmarks'); } }