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

20150717130904_add_commits_count_to_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df6c88f29613e25a0365a38490a496b89b377ceb (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddCommitsCountToProject < ActiveRecord::Migration[4.2]
  def change
    add_column :projects, :commit_count, :integer, default: 0
  end
end