mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-09-08 20:50:38 +00:00
Since we use the value for days.ago and are seeing PG::DatetimeFieldOverflow: ERROR: timestamp out of range: "5473790-07-13 08:43:28.497823 BC, set limits to the site setting.
23 lines
516 B
Ruby
23 lines
516 B
Ruby
# frozen_string_literal: true
|
|
class SetTranslationBackfillMaxAge < ActiveRecord::Migration[7.2]
|
|
def up
|
|
execute <<~SQL
|
|
UPDATE site_settings
|
|
SET value = '20000'
|
|
WHERE name = 'ai_translation_backfill_max_age_days'
|
|
AND value::integer > 20000;
|
|
SQL
|
|
|
|
execute <<~SQL
|
|
UPDATE site_settings
|
|
SET value = '0'
|
|
WHERE name = 'ai_translation_backfill_max_age_days'
|
|
AND value::integer < 0;
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|