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

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

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

  def change
    add_column :application_settings, :notes_create_limit_allowlist, :text, array: true, default: [], null: false
  end
end