chinwagsocial/db/migrate/20190627222826_add_category_id_to_custom_emojis.rb
2019-06-28 15:54:10 +02:00

6 lines
141 B
Ruby

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