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

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

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

  def change
    add_column :application_settings, :disable_feed_token, :boolean, null: false, default: false
  end
end