I have an old database that I don’t want to use for the new Laravel based system.
The previous database is relatively heavy and it takes a lot of time to transfer through query by migration.
Is there an optimal way to transfer information from the previous database to the new database? In such a way that information is extracted from the previous database and transferred to the new database in a sorted form by us
Please guide me
Currently, I use migration to query the old database and insert information into the new database. But this mode causes disruption in the main server due to high timeout.