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

20151118162244_add_projects_public_index.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a525c69ad06c1640580b99f5230237302ff3145 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddProjectsPublicIndex < ActiveRecord::Migration[4.2]
  def change
    add_index :namespaces, :public
  end
end