# 레일즈 모든 컬럼 변경
레일즈 모든 컬럼 값을 변경하려면 어떻게 하나요?
haesamq님의 답변
## update_all
```
Foo.update_all(some_column: "bar")
```
## 레퍼런스
+ https://stackoverflow.com/questions/4512696/update-a-column-all-rows
sehongpark님의 답변
## 디폴트 값 설정
마이그레이션 작성
```
rails g migration add_default_value_to_table
```
내용 추가
```
lass AddDefaultValueToChallenge < ActiveRecord::Migration
def change
change_column_default :challenges, :step, 0
change_column_default :challenges, :level, 0
end
end
```