gitlab-org--gitlab-foss/db/migrate/20160314143402_projects_add...

7 lines
167 B
Ruby

# rubocop:disable all
class ProjectsAddPushesSinceGc < ActiveRecord::Migration
def change
add_column :projects, :pushes_since_gc, :integer, default: 0
end
end