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

20150310194358_add_version_check_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: 5d3dae6e7d80b9cb0d7ac9517d169b8b4d272eb1 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddVersionCheckToApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :version_check_enabled, :boolean, default: true
  end
end