Fixes #3777 - misspelled KnowledgeBase constant breaks update.

This commit is contained in:
Thorsten Eckel 2021-09-29 12:16:16 +02:00
parent 2bba743dc3
commit 9bb1cf6d00

View file

@ -4,8 +4,8 @@ class Issue2619KbHeaderLinkColor < ActiveRecord::Migration[6.0]
def up
return if !Setting.exists?(name: 'system_init_done')
add_column :knowledge_bases, :color_header_link, :string, limit: 25, null: false, default: 'hsl(206,8%,50%)'
add_column :knowledge_bases, :color_header_link, :string, limit: 25, null: false, default: 'hsl(206,8%,50%)' # rubocop:disable Zammad/ExistsResetColumnInformation
change_column_default :knowledge_bases, :color_header_link, nil
KnowledgeBasis.reset_column_information
KnowledgeBase.reset_column_information
end
end