Last active
August 29, 2015 13:57
-
-
Save rossta/9621855 to your computer and use it in GitHub Desktop.
Notes for orphaned flag datafix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # flags orphaned from forum topics (discussions) | |
| Flag.joins("LEFT OUTER JOIN forum_topics ON flags.flaggable_id = forum_topics.id").where('forum_topics.id IS NULL').where(flaggable_type: 'ForumTopic') | |
| # flags orphaned from comments | |
| Flag.joins("LEFT OUTER JOIN comments ON flags.flaggable_id = comments.id").where('comments.id IS NULL').where(flaggable_type: 'Comment') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment