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:
commit
57c068e169
2 changed files with 6 additions and 4 deletions
4
changelogs/unreleased/28850-fix-broken-migration.yml
Normal file
4
changelogs/unreleased/28850-fix-broken-migration.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: Fix broken migration when upgrading straight to 8.17.1
|
||||
merge_request: 9613
|
||||
author:
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue