Add custom emoji size recording and publish api

This commit is contained in:
KMY 2023-03-08 16:32:38 +09:00
parent 47bedd20ca
commit 92df4674ff
6 changed files with 36 additions and 2 deletions

View file

@ -0,0 +1,6 @@
class AddImageSizeToCustomEmojis < ActiveRecord::Migration[6.1]
def change
add_column :custom_emojis, :image_width, :integer
add_column :custom_emojis, :image_height, :integer
end
end