Open yachtcaptain23 opened 5 years ago
Hey I'm at a loss here. You can peak at our code specified here: https://github.com/brave-intl/publishers/blob/staging/app/models/publisher.rb
Anyways, I'm having trouble running Publisher.select(:id) as you can see from the result:
Publisher.select(:id)
2.3.8 :001 > Publisher.select(:id) (Object doesn't support #inspect) =>
I don't understand as this is our current attr_encrypted variables:
attr_encrypted
attr_encrypted :authentication_token, key: :encryption_key attr_encrypted :uphold_code, key: :encryption_key attr_encrypted :uphold_access_parameters, key: :encryption_key
Running any query without a select works seeming fine.
select
getting the same thing..
any table that has saved encrypted_ is now dead to my rails console
Hey I'm at a loss here. You can peak at our code specified here: https://github.com/brave-intl/publishers/blob/staging/app/models/publisher.rb
Anyways, I'm having trouble running
Publisher.select(:id)
as you can see from the result:I don't understand as this is our current
attr_encrypted
variables:Running any query without a
select
works seeming fine.