In Rails 4.0.13,
Я проверил с этим синтаксисом, возможно, он будет делать то же самое для вас в рельсах 3.
Model.where(conditions).update_all(:column_name=> nil)
where conditions are filtered condition to fetch the each record and update_all will operate on those record, you can update one or more column based on your requirement.
для вашего кода потребности будет.
Konkurrencer.where(:udtraekkes=> nil).update_all(:udtraekkes=> nil)