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: 471db437b111ee9e930bd4843456a934435b51e7 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddProjectsVisibilityLevelIndex < ActiveRecord::Migration
  def change
    add_index :projects, :visibility_level
  end
end