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

20131023103430_add_allow_git_fetch_to_project.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 900ea913728b6c481c8a4e2bf3bca79d9be142c8 (plain)
1
2
3
4
5
class AddAllowGitFetchToProject < ActiveRecord::Migration
  def change
    add_column :projects, :allow_git_fetch, :boolean, default: true, null: false
  end
end