removed rsa keypair from account table, it was a federation relic
This commit is contained in:
parent
0456ccfb2a
commit
e942d3d97c
|
@ -0,0 +1,5 @@
|
|||
class RemovePrivateKeyFromAccounts < ActiveRecord::Migration[6.0]
|
||||
def change
|
||||
safety_assured { remove_column :accounts, :private_key, :text }
|
||||
end
|
||||
end
|
|
@ -0,0 +1,5 @@
|
|||
class RemovePublicKeyFromAccounts < ActiveRecord::Migration[6.0]
|
||||
def change
|
||||
safety_assured { remove_column :accounts, :public_key, :text }
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue