summaryrefslogtreecommitdiff
path: root/db/migrate/20150717130904_add_commits_count_to_project.rb
blob: 9b46daa5933901797740130f80a672c965f21463 (plain)
1
2
3
4
5
class AddCommitsCountToProject < ActiveRecord::Migration
  def change
    add_column :projects, :commit_count, :integer, default: 0
  end
end