From 7adb54272d8753b312907d281f863674e43a9378 Mon Sep 17 00:00:00 2001 From: Andrea Vos Date: Tue, 2 Sep 2025 21:44:19 +0200 Subject: [PATCH] fix migration --- migrations/094-user-personally-string.sql | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/migrations/094-user-personally-string.sql b/migrations/094-user-personally-string.sql index e8bf9c42b..d8e74a01d 100644 --- a/migrations/094-user-personally-string.sql +++ b/migrations/094-user-personally-string.sql @@ -19,16 +19,12 @@ create table users_dg_tmp loginAttempts TEXT, timesheets TEXT, socialLookup INTEGER default '0' not null, - activeSubscriptionId text, - subscriptionData TEXT default NULL, - activeSubscription INTEGER default 0 not null, personally TEXT default NULL ); insert into users_dg_tmp(id, username, email, roles, avatarSource, bannedReason, suspiciousChecked, usernameNorm, bannedTerms, bannedBy, lastActive, banSnapshot, inactiveWarning, adminNotifications, - loginAttempts, timesheets, socialLookup, activeSubscriptionId, subscriptionData, - activeSubscription, personally) + loginAttempts, timesheets, socialLookup, personally) select id, username, email, @@ -46,9 +42,6 @@ select id, loginAttempts, timesheets, socialLookup, - activeSubscriptionId, - subscriptionData, - activeSubscription, null from users;