Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20151228111122_remove_public_from_namespace.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bcb322d9cba3441fd9625ea09b481eb847b84969 (plain)
1
2
3
4
5
6
7
# rubocop:disable all
# Migration type: online
class RemovePublicFromNamespace < ActiveRecord::Migration
  def change
    remove_column :namespaces, :public, :boolean
  end
end