2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-27 14:09:10 +00:00
|
|
|
class AddUriToCustomEmojis < ActiveRecord::Migration[5.2]
|
2017-10-07 15:43:42 +00:00
|
|
|
def change
|
|
|
|
add_column :custom_emojis, :uri, :string
|
|
|
|
add_column :custom_emojis, :image_remote_url, :string
|
|
|
|
end
|
|
|
|
end
|