How Casey Fixed the YDC site 7/31/14
cd into the production version
ubuntu:/rails/campustheater-production/current
RAILS_ENV=production rails console
TakeoverRequest.where(:approved => false).map{|tr| puts tr.requested_person.display_name}
TakeoverRequest.where(:approved => false).first.destroy
(the first one in the array was the problem so that's why it's first.destroy)