Skip to content

Commit

Permalink
update delayed job schema in the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
technoweenie committed Sep 2, 2008
1 parent 05e95f8 commit 7931ef1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions README.textile
Expand Up @@ -23,15 +23,15 @@ h2. Setup
The library evolves around a delayed_jobs table which looks as follows:

create_table :delayed_jobs, :force => true do |table|
table.integer :priority, :default => 0
table.integer :attempts, :default => 0
table.text :handler
table.string :last_error
table.datetime :run_at
table.datetime :locked_until
table.string :locked_by
table.timestamps
end
table.integer :priority, :default => 0
table.integer :attempts, :default => 0
table.text :handler
table.string :last_error
table.datetime :run_at
table.datetime :locked_at
table.string :locked_by
table.timestamps
end

h2. Usage

Expand Down

0 comments on commit 7931ef1

Please sign in to comment.