mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-18 11:04:33 +08:00
10 lines
174 B
Ruby
10 lines
174 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ConvertToActiveStorage < ActiveRecord::Migration[5.2]
|
|
def up
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|