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: 9b46daa5933901797740130f80a672c965f21463 (plain)
1
2
3
4
5
class AddCommitsCountToProject < ActiveRecord::Migration
  def change
    add_column :projects, :commit_count, :integer, default: 0
  end
end