mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 11:28:18 +00:00
dd0b4e26a7
* remove fa- part of prefix from font awesome icon names
11 lines
246 B
Ruby
11 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
|