I need to change the names of many fields to comply with a new naming convention, and I was wondering if there is an official way to do this?
deep wiki has recommended this to me
is there any way to search though all workflows/flowcharts to find where the old value might be used?
deep wiki has recommended this to me
- Create New Field: Go to Administration > Entity Manager > [Your Entity] > Fields and create countrySales with the same type as shippingCountry FieldManager.php:50-55 .
- Migrate Data: Execute a SQL query via your database tool:UPDATE `your_entity_table` SET country_sales = shipping_country;
- Update Layouts: Add the new field to your Detail/Edit layouts in Administration > Entity Manager > [Your Entity] > Layouts Renamer.php:312-318 .
- Delete Old Field: Once verified, delete shippingCountry from the Field Manager.
is there any way to search though all workflows/flowcharts to find where the old value might be used?

Comment