You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem
The app tries to re-insert athlete information with the given athlete-id and the corresponding strava token. The problem occurs because of a unique-constraint on the athlete-id.
Quick Fix
Manually delete the old authorization information
deleteFROM`user_token`where user_id = (select id from user u whereu.athlete_id=[ATHLETE]);
deleteFROM`user`where athlete_id=[ATHLETE];
Real Fix
Update the existing row to the new authorization code from strava
The text was updated successfully, but these errors were encountered:
Problem
The app tries to re-insert athlete information with the given athlete-id and the corresponding strava token. The problem occurs because of a unique-constraint on the athlete-id.
Quick Fix
Manually delete the old authorization information
Real Fix
Update the existing row to the new authorization code from strava
The text was updated successfully, but these errors were encountered: