bigInteger('id')->unsigned()->primary()->change(); $table->dropPrimary('id'); }); Schema::table('collection_items', function (Blueprint $table) { $table->bigInteger('id')->unsigned()->primary()->change(); $table->dropPrimary('id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('collections', function (Blueprint $table) { // }); } }