-
-
Notifications
You must be signed in to change notification settings - Fork 292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to log in after moving from preview-postgres to 2.2.2 #1201
Comments
Your migrations failed due to a changing from a Not a bug, but you'll need to fix this manually by using a pg client and running DELETE FROM migrations;
INSERT INTO migrations VALUES
(1, 1734786061496, 'InitialMigration1734786061496'),
(2, 1734786596045, 'AddTelegramMessageThreadId1734786596045'),
(3, 1734809898562, 'FixNullFields1734809898562');
ALTER TABLE "user_settings" ADD IF NOT EXISTS "discoverRegion" character varying; Could you try that? |
Great, I managed to fix it with your queries and 2 more that seemed to be required. For posterity (and anybody else running into similar problems) this is the full batch I had to run: DELETE FROM migrations;
INSERT INTO migrations VALUES
(1, 1734786061496, 'InitialMigration1734786061496'),
(2, 1734786596045, 'AddTelegramMessageThreadId1734786596045'),
(3, 1734809898562, 'FixNullFields1734809898562'),
(5, 1735553645562, 'AddOverrideRules1734805738349');
ALTER TABLE "user_settings" ADD IF NOT EXISTS "discoverRegion" character varying;
ALTER TABLE "user_settings" ADD IF NOT EXISTS "streamingRegion" character varying; Thanks for the quick help! |
I was missing
Migration output:
Migration command:
|
Description
Hey all, I migrated my jellyseerr container to the
preview-postgres
image mentioned here and everything has worked fine.However, when moving to the new release (2.2.2), I've run into some problems. First I got an error message identical to the one posted here. After running the query mentioned in that issue to resolve, Jellyseerr seemed to start normally, however the connection with Plex appears to be broken and I can't log in with my plex account:
Version
2.2.2
Steps to Reproduce
preview-postgres
and run migration (logs are here)preview-postgres
to 2.2.2Screenshots
No response
Logs
No response
Platform
desktop
Database
PostgreSQL
Device
MacBook Pro
Operating System
Ubuntu 20.04 running Docker
Browser
Firefox
Additional Context
Docker version:
Code of Conduct
The text was updated successfully, but these errors were encountered: