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

20200320212400_add_project_show_default_award_emojis.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8238f754555f688c10dee25294bc2a73175c0a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddProjectShowDefaultAwardEmojis < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :project_settings, :show_default_award_emojis, :boolean, default: true, null: false
  end
end