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: e9d42c1e749732a763ff9d69f40cbc73d05327ca (plain)
1
2
3
4
5
class AddVersionCheckToApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :version_check_enabled, :boolean, default: true
  end
end