fa82ec15d5
Co-authored-by: Kei IWASAKI <laughk@users.noreply.github.com>
6 lines
237 B
Ruby
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
|