discourse/db/migrate/20250521053324_add_excerpt_to_topic_localization.rb
Natalie Tay 94e653af08
FEATURE: Also localize topic excerpts (#32839)
Currently, topic excerpts are not localized.

This commit adds the excerpt column into topic_localization and displays the
localized excerpt if present.
2025-05-21 17:49:27 +08:00

7 lines
202 B
Ruby

# frozen_string_literal: true
class AddExcerptToTopicLocalization < ActiveRecord::Migration[7.2]
def change
add_column :topic_localizations, :excerpt, :string, null: true, default: nil
end
end