Is it safe to add a new field to meta_value field?
I'm trying to offload Wordpress images from my web server. I've successfully moved everything over to Amazon AWS and have a syncing mechanism in place that uploads new images to AWS. Now I would like to store a flag somewhere that indicates whether the image has been synced so my custom theme can pick the correct path. I was thinking adding that flag to the wp_postmeta table, as part of the meta_value serialized object.
Is that a safe technique? What are the chances this value gets overwritten and lost?
Additionally, I assume the guid field wp_posts shouldn't be updated with the full path to the image on AWS? That could be a solution as well.
Topic meta-value post-meta guids Wordpress
Category Web