Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我基本上想采用由 php 应用程序(codeigniter 框架)创建和使用的现有 mysql 数据库结构并将其反向工程到 django 应用程序。有什么工具可以做到这一点吗?也许南迁?
创建一个项目,并将您的设置指向您的数据库
然后运行
./manage.py inspectdb
这将为您指向的数据库打印一个 python 模型文件
您可以通过执行以下操作将其输出到文件中
./manage.py inspectdb > models.py
然后您可以将文件移动到最合适的位置,并根据需要进行编辑。