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

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