Merge pull request #354 from kikyous/kikyous-patch-1

update_column instead of change_column
This commit is contained in:
Thorsten Böttger 2016-05-03 21:24:28 +12:00
commit 92a707e89d
1 changed files with 1 additions and 1 deletions

View File

@ -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