2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-08-17 18:04:11 +08:00

DEV: Promote historic core plugins post_deploy migrations (#34274)

This commit promotes all post_deploy migrations which existed in
Discourse v3.4.0 (timestamp <= 20241023041126)
This commit is contained in:
Alan Guo Xiang Tan 2025-08-13 15:52:19 +08:00 committed by GitHub
parent b9f6ff48a4
commit c9421c1120
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 0 additions and 7 deletions

View file

@ -2,10 +2,6 @@
module Chat
class MentionNotification < ActiveRecord::Base
self.ignored_columns = [
:old_notification_id, # TODO: Remove once 20240829140227_drop_chat_mention_notifications_old_id_column has been promoted to pre-deploy
]
self.table_name = "chat_mention_notifications"
belongs_to :chat_mention, class_name: "Chat::Mention"

View file

@ -1,9 +1,6 @@
# frozen_string_literal: true
class RagDocumentFragment < ActiveRecord::Base
# TODO Jan 2025 - remove
self.ignored_columns = %i[ai_persona_id]
belongs_to :upload
belongs_to :target, polymorphic: true