summaryrefslogtreecommitdiff
path: root/db/migrate/20151118162244_add_projects_public_index.rb
blob: 589f124c21e674c8bd2fae0f4dad5201b1b5d6a0 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddProjectsPublicIndex < ActiveRecord::Migration
  def change
    add_index :namespaces, :public
  end
end