debian-mirror-gitlab/db/migrate/20160314143402_projects_add_pushes_since_gc.rb
2016-06-16 23:09:34 +05:30

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