summaryrefslogtreecommitdiff
path: root/db/migrate/20150717130904_add_commits_count_to_project.rb
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