removed rsa keypair from account table, it was a federation relic

This commit is contained in:
admin 2021-02-15 21:49:50 -05:00
parent 0456ccfb2a
commit e942d3d97c
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class RemovePrivateKeyFromAccounts < ActiveRecord::Migration[6.0]
def change
safety_assured { remove_column :accounts, :private_key, :text }
end
end

View File

@ -0,0 +1,5 @@
class RemovePublicKeyFromAccounts < ActiveRecord::Migration[6.0]
def change
safety_assured { remove_column :accounts, :public_key, :text }
end
end