Is possible to generate migration schema from existing database in lumen/laravel 5.2 ? is there any package?
I connect lumen to magento database, now I need to use eloquent. I dont have time to make migration model for every table.
Is possible to generate migration schema from existing database in lumen/laravel 5.2 ? is there any package?
I connect lumen to magento database, now I need to use eloquent. I dont have time to make migration model for every table.
Some easy way I found:
You can dump database first with mysqldump tool to the sql file and then in your migration you can do somethink like this: