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

20210407111027_add_whats_new_application_setting.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 450c26e2199523eb18ecc5081ab0dac1ed6f5024 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddWhatsNewApplicationSetting < ActiveRecord::Migration[6.0]
  def change
    add_column :application_settings, :whats_new_variant, :integer, limit: 2, default: 0
  end
end