I have successfully created a database 'translations' table using artisan migration. When this database is released into a production environment, I will start getting translation text files for new translation content. They are formatted as SQL inserts files.
I know artisan migration has seeding tools, however everything I've reviewed indicates that seeding should be used for testing & fake development content. I have not seen any example of using migrate seeding for production 'LIVE' data.
My question is this; Is there a Laravel method for deploying live database data? Whether it uses artisan migrate or some other Laravel tool. As it is now, I plan on loading these translation SQL files directly into the DB without Laravel.
Manually running the .SQL file from within the database work correctly, however I'm trying to determine if there is a Laravel method for this?