Skip to content
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

serializers.PrimaryKeyRelatedField() field does not play nicely with the type generator #64

Open
HasanMajid opened this issue Aug 26, 2024 · 0 comments

Comments

@HasanMajid
Copy link

HasanMajid commented Aug 26, 2024

when I have a field in a serializer like this:

preferred_language = serializers.PrimaryKeyRelatedField(
        queryset=Language.objects.all(), required=False
    )

and I try to run migrations, it gives me an error like this: django.db.utils.OperationalError: no such table: account_language.
I guess it tries to generate the type before it can run the migrations properly. It only works once I remove the ts_interface() tag from the serializer.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
@HasanMajid and others