Commit 57c068e1 authored by Sean McGivern's avatar Sean McGivern

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

Disable the inheritance column of services in DisableInvalidServiceTemplates migration

Closes #28850

See merge request !9613
parents 135b6e5e 2f40fc52
---
title: Fix broken migration when upgrading straight to 8.17.1
merge_request: 9613
author:
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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment