mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-04-30 11:07:08 +08:00
10 lines
246 B
Ruby
10 lines
246 B
Ruby
# 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
|