mastodon/db/migrate/20190627222826_add_category...

8 lines
172 B
Ruby

# frozen_string_literal: true
class AddCategoryIdToCustomEmojis < ActiveRecord::Migration[5.2]
def change
add_column :custom_emojis, :category_id, :bigint
end
end