1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/db/migrate/20240720140205_drop_end_to_end_message_tables.rb
2024-07-29 11:18:35 -04:00

15 lines
355 B
Ruby

# 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