20190627222826_add_category_id_to_custom_emojis.rb 172 B

1234567
  1. # frozen_string_literal: true
  2. class AddCategoryIdToCustomEmojis < ActiveRecord::Migration[5.2]
  3. def change
  4. add_column :custom_emojis, :category_id, :bigint
  5. end
  6. end