From 2ba38b6a1c414586285c84b160b5373863400a9d Mon Sep 17 00:00:00 2001 From: chen Date: Wed, 27 Apr 2016 09:50:27 +0800 Subject: [PATCH] update_column instead of change_column --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ba52d9..5e407fc 100644 --- a/README.md +++ b/README.md @@ -524,7 +524,7 @@ successful or `false` if errors occur. Exceptions are not raised. If you want make sure the state gets saved without running validations (and thereby maybe persisting aninvalid object state), simply tell AASM to skip the validations. Be aware that when skipping validations, only the state column will -be updated in the database (just like ActiveRecord `change_column` is working). +be updated in the database (just like ActiveRecord `update_column` is working). ```ruby class Job < ActiveRecord::Base