Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200720154123_add_external_to_custom_emoji.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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