16 lines
357 B
Ruby
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
|