gab-social/db/migrate/20210216022828_remove_private_key_from_accounts.rb

6 lines
157 B
Ruby

class RemovePrivateKeyFromAccounts < ActiveRecord::Migration[6.0]
def change
safety_assured { remove_column :accounts, :private_key, :text }
end
end