mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
11 lines
249 B
Ruby
11 lines
249 B
Ruby
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
|