discourse/db/migrate/20230224193734_create_theme_svg_sprite.rb
Daniel Waterworth 84f590ab83
DEV: Store theme sprites in the DB (#20501)
Let's avoid fetching sprites from the CDN during page rendering.
2023-03-14 13:11:45 -05:00

16 lines
357 B
Ruby

# 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