Skip to content

Commit

Permalink
Merge branch 'master' of git://github.com/jbarnette/delayed_job into …
Browse files Browse the repository at this point in the history
…jbarnette/master
  • Loading branch information
Tobias Lütke committed Oct 1, 2008
2 parents a6e374e + ce63517 commit 3e5c373
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 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.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
end

h2. Usage

Expand Down

0 comments on commit 3e5c373

Please sign in to comment.