fedibird-fe/db/migrate/20230221031206_add_width_height_to_custom_emoji.rb

7 lines
237 B
Ruby
Raw Normal View History

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