unsignedInteger('new_album_id')->nullable(true); $table->foreign('new_album_id') ->references('id')->on('albums') ->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('user_activity', function (Blueprint $table) { $table->dropColumn('new_album_id'); }); } }