cbdbbcbc4f
* I got an error when updating GDK because it already exists.
7 lines
200 B
Ruby
7 lines
200 B
Ruby
class IndexNamespacesOnVisibilityLevel < ActiveRecord::Migration
|
|
def change
|
|
unless index_exists?(:namespaces, :visibility_level)
|
|
add_index :namespaces, :visibility_level
|
|
end
|
|
end
|
|
end
|