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

20160202164642_add_allow_guest_to_access_builds_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c5cb307fada31aba3a3a2be7a06089577d46f5c (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddAllowGuestToAccessBuildsProject < ActiveRecord::Migration
  def change
    add_column :projects, :public_builds, :boolean, default: true, null: false
  end
end