Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Commit

Permalink
adding background job as a plugin, trying to reduce external dependen…
Browse files Browse the repository at this point in the history
…cies, migrating away from BackgroundRB
  • Loading branch information
mikehelmick committed Aug 3, 2009
1 parent 91a6919 commit 5cfdee3
Show file tree
Hide file tree
Showing 41 changed files with 6,820 additions and 0 deletions.
8 changes: 8 additions & 0 deletions db/migrate/20090803034724_bj_migration0.rb
@@ -0,0 +1,8 @@
class BjMigration0 < ActiveRecord::Migration
def self.up
Bj::Table.each{|table| table.up}
end
def self.down
Bj::Table.reverse_each{|table| table.down}
end
end

0 comments on commit 5cfdee3

Please sign in to comment.