> user = User.find("user_id_2") > user.organization_ids # => [] > organization = Organization.find_by(:slug => "toms-test-apps") > organization.user_ids # => ["user_id_1", "user_id_2"] The User <=> Organization association is a 'has and belongs to many' association managed by Mongoid ORM in our MongoDB database. Something had gone terribly wrong with the associations. Users were only getting linke
