20211004111501_reload_after_core_workflow_again.rb 294 B

1234567891011
  1. # Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
  2. class ReloadAfterCoreWorkflowAgain < ActiveRecord::Migration[6.0]
  3. def up
  4. # return if it's a new setup
  5. return if !Setting.exists?(name: 'system_init_done')
  6. AppVersion.set(true, 'app_version')
  7. end
  8. end