Can object methods be installed to work with the fields such as CREDIT_CARD_NUMBER encrypt?
Should objects or attributes be created for each of the fields?
How can this be done in a way as to not sacrifice performance.
Can we recycle each of those objects,
too.
$record->CREDIT_CARD_NUMBER->encrypt;
This can be done with autobox ... I think.
What about:
$record->encrypt_CREDIT_CARD_NUMBER?