We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Geotags have a user field, which doesn't make a lot of sense given that they are added to a Sound by the sound's uploader.
user
See if there are any cases where a geotag is added by a different user. If there aren't any, remove the field.
The text was updated successfully, but these errors were encountered:
select * from sounds_sound s left join geotags_geotag g on s.geotag_id=g.id where g.user_id <> s.user_id; returns no rows
select * from sounds_sound s left join geotags_geotag g on s.geotag_id=g.id where g.user_id <> s.user_id;
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Geotags have a
user
field, which doesn't make a lot of sense given that they are added to a Sound by the sound's uploader.See if there are any cases where a geotag is added by a different user. If there aren't any, remove the field.
The text was updated successfully, but these errors were encountered: