DEV: Store theme sprites in the DB (#20501)

Let's avoid fetching sprites from the CDN during page rendering.
This commit is contained in:
Daniel Waterworth
2023-03-14 13:11:45 -05:00
committed by GitHub
parent e6c04e2dc2
commit 84f590ab83
10 changed files with 232 additions and 63 deletions

View File

@@ -0,0 +1,15 @@
# frozen_string_literal: true
class CreateThemeSvgSprite < ActiveRecord::Migration[7.0]
def change
create_table :theme_svg_sprites do |t|
t.integer :theme_id, null: false
t.integer :upload_id, null: false
t.binary :sprite, null: false
t.timestamps
end
add_index :theme_svg_sprites, :theme_id, unique: true
end
end