mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:16:41 +08:00
bd2ca8d617
This commit promotes all post_deploy migrations which existed in Discourse v3.1.0 (timestamp <= 20230405121454)
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
|