mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 22:46:23 +00:00
12 lines
183 B
Ruby
12 lines
183 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Que
|
|
class CreateQueTables < ActiveRecord::Migration[6.1]
|
|
def up
|
|
Que.migrate! version: 7
|
|
end
|
|
|
|
def down
|
|
Que.migrate! version: 0
|
|
end
|
|
end
|