mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 13:08:40 +08:00
10 lines
246 B
Ruby
Vendored
10 lines
246 B
Ruby
Vendored
# frozen_string_literal: true
|
|
class RemapFa5IconNamesToFa6 < ActiveRecord::Migration[7.1]
|
|
def up
|
|
# no-op - reimplemented in 20241204085540_remap_to_fa6_icon_names.rb
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|