mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-17 07:46:22 +00:00
13 lines
183 B
Ruby
13 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
|