2023-07-12 02:47:08 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-27 09:09:10 -05:00
|
|
|
class AddUriToCustomEmojis < ActiveRecord::Migration[5.2]
|
2017-10-07 10:43:42 -05:00
|
|
|
def change
|
2023-11-06 10:15:48 -06: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 10:43:42 -05:00
|
|
|
end
|
|
|
|
end
|