2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2017-09-08 08:28:34 +00:00
|
|
|
class JobUnableToCreateIssue432 < ActiveRecord::Migration[4.2]
|
2016-11-17 08:56:43 +00:00
|
|
|
def up
|
|
|
|
# return if it's a new setup
|
2020-08-03 08:35:43 +00:00
|
|
|
return if !Setting.exists?(name: 'system_init_done')
|
2016-11-17 08:56:43 +00:00
|
|
|
|
|
|
|
ActiveRecord::Migration.change_table :jobs do |t|
|
|
|
|
t.change :timeplan, :string, limit: 2500
|
|
|
|
t.change :condition, :text, limit: 500.kilobytes + 1
|
|
|
|
t.change :perform, :text, limit: 500.kilobytes + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
ActiveRecord::Migration.change_table :triggers do |t|
|
|
|
|
t.change :condition, :text, limit: 500.kilobytes + 1
|
|
|
|
t.change :perform, :text, limit: 500.kilobytes + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
ActiveRecord::Migration.change_table :overviews do |t|
|
|
|
|
t.change :condition, :text, limit: 500.kilobytes + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
ActiveRecord::Migration.change_table :report_profiles do |t|
|
|
|
|
t.change :condition, :text, limit: 500.kilobytes + 1
|
|
|
|
end
|
|
|
|
ActiveRecord::Migration.change_table :slas do |t|
|
|
|
|
t.change :condition, :text, limit: 500.kilobytes + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
ActiveRecord::Migration.change_table :macros do |t|
|
|
|
|
t.change :perform, :text, limit: 500.kilobytes + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
ActiveRecord::Migration.change_table :postmaster_filters do |t|
|
|
|
|
t.change :match, :text, limit: 500.kilobytes + 1
|
|
|
|
t.change :perform, :text, limit: 500.kilobytes + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
ActiveRecord::Migration.change_table :stats_stores do |t|
|
|
|
|
t.change :data, :string, limit: 5000
|
|
|
|
end
|
|
|
|
|
|
|
|
Cache.clear
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|