mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Holy crap, it boots Rails3 and actually sends messages to the workers!
This commit is contained in:
parent
e7ae72d3d3
commit
89144133fb
38 changed files with 618 additions and 12 deletions
10
myapp/db/migrate/20120123214055_create_posts.rb
Normal file
10
myapp/db/migrate/20120123214055_create_posts.rb
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
class CreatePosts < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :posts do |t|
|
||||
t.string :title
|
||||
t.string :body
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue