This commit is contained in:
Priit Tark 2015-06-12 12:35:50 +03:00
parent 0aa8058022
commit 51d22af52b
9 changed files with 4779 additions and 2 deletions

View file

@ -0,0 +1,11 @@
class AddQue < ActiveRecord::Migration
def self.up
# The current version as of this migration's creation.
Que.migrate! :version => 3
end
def self.down
# Completely removes Que's job queue.
Que.migrate! :version => 0
end
end