BigW Consortium Gitlab

20150717130904_add_commits_count_to_project.rb 164 Bytes
Newer Older
1
# rubocop:disable all
2 3 4 5 6
class AddCommitsCountToProject < ActiveRecord::Migration
  def change
    add_column :projects, :commit_count, :integer, default: 0
  end
end