mirror of
https://github.com/discourse/discourse.git
synced 2025-05-21 18:12:32 +08:00
DEV: Drop chat_uploads table and model and remove old references (#20926)
Followup to 0924f874bd9aca3515e17d0d084a35058e9d5757, we migrated Chat::Upload records to UploadReference records there and have not been making new Chat::Upload records for some time, we can now delete the model and table.
This commit is contained in:
@ -81,7 +81,6 @@ module Chat
|
||||
def update_uploads(upload_info)
|
||||
return unless upload_info[:changed]
|
||||
|
||||
DB.exec("DELETE FROM chat_uploads WHERE chat_message_id = #{@chat_message.id}")
|
||||
UploadReference.where(target: @chat_message).destroy_all
|
||||
@chat_message.attach_uploads(upload_info[:uploads])
|
||||
end
|
||||
|
Reference in New Issue
Block a user