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

20160614182521_add_repository_storage_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: 6dae91b700b866f54f7d7c8904ec9e2023c26bb9 (plain)
1
2
3
4
5
class AddRepositoryStorageToApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :repository_storage, :string, default: 'default'
  end
end