Skip to content

Commit

Permalink
Merge pull request #181 from nkondratyev/update_readme
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
lardawge committed Jul 1, 2014
2 parents 6e58b8c + 5edb239 commit 775e915
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,11 @@ mount_uploader :avatar, AvatarUploader
process_in_background :avatar
```

Optionally you can add a column to the database which will be set to nil when the background processing is complete.
Optionally you can add a column to the database which will be set to `true` when
the background processing is start and to `false` when the background processing is complete.

This comment has been minimized.

Copy link
@felixbuenemann

felixbuenemann Jul 18, 2014

Contributor

There's a typo, should be … is started


```ruby
add_column :users, :avatar_processing, :boolean
add_column :users, :avatar_processing, :boolean, null: false
```

### To use store_in_background
Expand Down

0 comments on commit 775e915

Please sign in to comment.