20170515000001_scheduler_status.rb 362 B

1234567891011121314
  1. # Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
  2. class SchedulerStatus < ActiveRecord::Migration[4.2]
  3. def up
  4. # return if it's a new setup
  5. return if !Setting.exists?(name: 'system_init_done')
  6. change_table :schedulers do |t|
  7. t.string :error_message, null: true
  8. t.string :status, null: true
  9. end
  10. end
  11. end