What is the recommended way to run a database update in Nextworld?
For example, I’ve added a new column to a table and need to populate it for all existing/historical records. I’d like to avoid triggering table triggers during the update, and I also want to avoid issues such as “Invalid Lookup Value” errors when updating historical data.
Is there a recommended approach in Nextworld for handling these types of data migrations/backfills?
Does Nextworld have anything similar to Liquibase scripts or a migration framework where we can safely run one-time database update scripts against existing records?
Any best practices or examples would be greatly appreciated.