summaryrefslogtreecommitdiff
path: root/db/migrate/20160407120251_add_images_enabled_for_project.rb
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