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

20160407120251_add_images_enabled_for_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fcffc98b47ae70e660eb3f6624596923c96ae774 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddImagesEnabledForProject < ActiveRecord::Migration
  def change
    add_column :projects, :container_registry_enabled, :boolean
  end
end