Merge branch '28850-fix-broken-migration' into 'master'

Disable the inheritance column of services in DisableInvalidServiceTemplates migration

Closes #28850

See merge request !9613
This commit is contained in:
Sean McGivern 2017-03-01 14:37:35 +00:00
commit 57c068e169
2 changed files with 6 additions and 4 deletions

View file

@ -0,0 +1,4 @@
---
title: Fix broken migration when upgrading straight to 8.17.1
merge_request: 9613
author:

View file

@ -1,10 +1,8 @@
class DisableInvalidServiceTemplates < ActiveRecord::Migration
DOWNTIME = false
unless defined?(Service)
class Service < ActiveRecord::Base
self.inheritance_column = nil
end
class Service < ActiveRecord::Base
self.inheritance_column = nil
end
def up