In my previous job, if you needed to update some records on their application, you created a sql script in the 'patches' folder, and once on deployment, a program would run all the new scripts in the folder. It was much like migrations, but it was for updating records, rather than just updating table structure. Does Laravel offer something similar to that? I looked up everywhere for this concept, outside of Laravel and failed to find something similar.
If one wants to automate updating some records in the production database, how does one do it? I know that I can manually run the scripts manually but I want some automation on it.
Thanks