2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-11-26 07:08:02 +00:00
|
|
|
|
|
|
|
class TranslationStringLength < ActiveRecord::Migration[6.0]
|
|
|
|
def change
|
|
|
|
# return if it's a new setup
|
|
|
|
return if !Setting.exists?(name: 'system_init_done')
|
|
|
|
|
|
|
|
# Increase translation string length from 500 to 3000.
|
|
|
|
change_column(:translations, :source, :string, limit: 3000)
|
|
|
|
change_column(:translations, :target, :string, limit: 3000)
|
|
|
|
change_column(:translations, :target_initial, :string, limit: 3000)
|
|
|
|
Translation.reset_column_information
|
|
|
|
end
|
|
|
|
end
|