0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 13:08:40 +08:00
discourse/db/migrate/20241127072350_remap_fa5_icon_names_to_fa6.rb
Kelv dd0b4e26a7
DEV: update fa6 icons to drop fa prefix (#30100)
* remove fa- part of prefix from font awesome icon names
2024-12-05 10:00:41 +08:00

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