debian-mirror-gitlab/db/migrate/20160320204112_index_namespaces_on_visibility_level.rb

9 lines
222 B
Ruby
Raw Normal View History

# rubocop:disable all
2016-06-02 11:05:42 +05:30
class IndexNamespacesOnVisibilityLevel < ActiveRecord::Migration
def change
unless index_exists?(:namespaces, :visibility_level)
add_index :namespaces, :visibility_level
end
end
end