about summary refs log tree commit diff
path: root/db/migrate/20190627222826_add_category_id_to_custom_emojis.rb
blob: 873b4d05fe10036abb7e9e0c3508fd59f8bf4fdf (plain) (blame)
1
2
3
4
5
class AddCategoryIdToCustomEmojis < ActiveRecord::Migration[5.2]
  def change
    add_column :custom_emojis, :category_id, :bigint
  end
end