2016-06-16 23:09:34 +05:30
|
|
|
# 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
|