mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 02:23:44 +08:00
10 lines
162 B
Ruby
10 lines
162 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class BackfillSvgSprites < ActiveRecord::Migration[7.0]
|
||
|
disable_ddl_transaction!
|
||
|
|
||
|
def up
|
||
|
ThemeSvgSprite.refetch!
|
||
|
end
|
||
|
end
|