Merge branch 'fix/irreversible-migration' into 'master'

Fix undefined method when reverting migration `RemoveProjectsPushesSinceGc`

See merge request !6375
This commit is contained in:
Rémy Coutable 2016-09-16 09:03:55 +00:00
commit 5524682428

View file

@ -14,6 +14,6 @@ class RemoveProjectsPushesSinceGc < ActiveRecord::Migration
end
def down
add_column_with_default! :projects, :pushes_since_gc, :integer, default: 0
add_column_with_default :projects, :pushes_since_gc, :integer, default: 0
end
end