98bb435f42
Migrations shouldn't fail RuboCop checks - especially lint checks, such as the nested method check. To avoid changing code in existing migrations, add the magic comment to the top of each of them to skip that file.
8 lines
222 B
Ruby
8 lines
222 B
Ruby
# rubocop:disable all
|
|
class IndexNamespacesOnVisibilityLevel < ActiveRecord::Migration
|
|
def change
|
|
unless index_exists?(:namespaces, :visibility_level)
|
|
add_index :namespaces, :visibility_level
|
|
end
|
|
end
|
|
end
|