Remove unused E2EE messaging code (#31193)

This commit is contained in:
Matt Jankowski 2024-09-18 05:27:43 -04:00 committed by GitHub
commit 5405bdd344
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
130 changed files with 25 additions and 1347 deletions

View file

@ -0,0 +1,15 @@
# frozen_string_literal: true
class DropEndToEndMessageTables < ActiveRecord::Migration[7.1]
def up
drop_table :system_keys
drop_table :one_time_keys
drop_table :encrypted_messages
drop_table :devices
safety_assured { remove_column :accounts, :devices_url }
end
def down
raise ActiveRecord::IrreversibleMigration
end
end