且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何从 laravel 中的现有数据库创建迁移

更新时间:2023-12-01 09:26:52

你可以使用 Jeffrey Way 的 Laravel 4 生成器工具,手动完成.这是一个非常有用的工具.https://github.com/JeffreyWay/Laravel-4-Generators(如果你是使用 Laravel 5,请改用这个包:https://github.com/laracasts/Laravel-5-Generators-Extended)

You could use Jeffrey Way's generator tool for Laravel 4, and do them by hand. It is a very useful tool. https://github.com/JeffreyWay/Laravel-4-Generators (if you are using Laravel 5, use this package instead: https://github.com/laracasts/Laravel-5-Generators-Extended)

或者您可以尝试以下软件包之一,它们应该将您现有的架构转换为 Laravel 迁移.我没有尝试过,但看看:

Or you could try out one of the following packages, they should convert your existing schema to Laravel migrations. I have not tried them, but have a look:

https://github.com/barryvdh/laravel-migration-generator一个>

另外,在另一个问题中阅读以下答案,可能对您或其他人有用:Laravel 中实体的逆向工程或自动生成?

Also, read the following answer in another question, might be useful to you or others: Reverse engineering or Auto-Generations of Entities in Laravel?