From 23257745a7dadbf032e27a37db853a5d2aee6071 Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Mon, 2 Mar 2026 01:14:23 +0100 Subject: [PATCH] Fixed profile updated_at timestamp not updating. --- src/actors.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/actors.js b/src/actors.js index 9b43073a..6619ed1b 100755 --- a/src/actors.js +++ b/src/actors.js @@ -351,6 +351,7 @@ function curateProfileEntry(profile) { tattoos: profile.tattoos, blood_type: profile.bloodType, avatar_media_id: profile.avatarMediaId || null, + updated_at: knex.raw('DEFAULT'), // default should be NOW(), this will update the column }; return curatedProfileEntry;