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

20160314143402_projects_add_pushes_since_gc.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d30a38bc99bd5aaecda032b74ee9d8eab6434b0 (plain)
1
2
3
4
5
class ProjectsAddPushesSinceGc < ActiveRecord::Migration
  def change
    add_column :projects, :pushes_since_gc, :integer, default: 0
  end
end