summaryrefslogtreecommitdiff
path: root/db/migrate/20200720154123_add_external_to_custom_emoji.rb
blob: 2a97235eec4ed5a1060f8a43fc423927c030a894 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddExternalToCustomEmoji < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :custom_emoji, :external, :boolean, default: true, null: false
  end
end