1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-23 22:57:05 +09:00
YuruToot/db/migrate/20171006142024_add_uri_to_custom_emojis.rb
2023-11-06 16:15:48 +00:00

13 lines
281 B
Ruby

# frozen_string_literal: true
class AddUriToCustomEmojis < ActiveRecord::Migration[5.2]
def change
safety_assured do
change_table(:custom_emojis, bulk: true) do |t|
t.column :uri, :string
t.column :image_remote_url, :string
end
end
end
end