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
|
2023-11-06 16:15:48 +00:00
|
|
|
safety_assured do
|
|
|
|
change_table(:custom_emojis, bulk: true) do |t|
|
|
|
|
t.column :uri, :string
|
|
|
|
t.column :image_remote_url, :string
|
|
|
|
end
|
|
|
|
end
|
2017-10-07 15:43:42 +00:00
|
|
|
end
|
|
|
|
end
|