-
Notifications
You must be signed in to change notification settings - Fork 673
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
Conversion error when migrating token_blacklist app. #131
Comments
Hey, we started using this library in our project and stumbled on this same issue as well with @JoonatanPartanen. If we understood this correctly based on few commits we found related to this, |
There is likely some migration magic going on here. Looking at the migrations preceding this one (in the same path), OutstandingToken.jti should indeed still be a UUID object instead of a str. I am not sure what actions cause the migrations to be executed out of order (or whatever causes this). Here is a link to the file: There is a rejected commit that seems to try to fix this: |
I tried the following and the migration worked:
|
When running the initial migrations for the token_blacklist app I would get this message.
So in that specific migration there is this code.
I changed it to this and now it works.
The text was updated successfully, but these errors were encountered: