about summary refs log tree commit diff
path: root/db/migrate/20171020084748_add_visible_in_picker_to_custom_emoji.rb
blob: 5f7c60a3eb3abed7df1aca8faf128ac27d467ba6 (plain) (blame)
1
2
3
4
5
6
7
class AddVisibleInPickerToCustomEmoji < ActiveRecord::Migration[5.2]
  def change
    safety_assured do
      add_column :custom_emojis, :visible_in_picker, :boolean, default: true, null: false
    end
  end
end