1
0
Fork 0
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:
Mike Perham 2012-01-23 14:05:03 -08:00
parent e7ae72d3d3
commit 89144133fb
38 changed files with 618 additions and 12 deletions

View 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