fedibird-fe/db/migrate/20230221031206_add_width_height_to_custom_emoji.rb
noellabo fa82ec15d5 Add wide emoji support
Co-authored-by: Kei IWASAKI <laughk@users.noreply.github.com>
2023-03-01 20:23:57 +09:00

6 lines
237 B
Ruby

class AddWidthHeightToCustomEmoji < ActiveRecord::Migration[6.1]
def change
add_column :custom_emojis, :width, :integer, null: true, default: nil
add_column :custom_emojis, :height, :integer, null: true, default: nil
end
end