使用图像文件将旧数据库迁移到 Django
我有一个旧数据库的 SQL 转储和一个包含图像的文件夹,这些图像由某些表的某些行引用,我需要将该数据迁移到新的 Django 模型。具体问题是如何“执行”上传,但是是在管理命令中。
当引用该字段的表迁移到其对应的模型时,我还需要设置模型的图像字段,并且还需要根据 upload_to
参数相应地处理文件名>图像字段。
如何以编程方式从文件路径或文件描述符填充图像字段?
I have a SQL dump of a legacy DB, and a folder with images, and those are referenced by some rows of certain tables, and I need to migrate that data to the new Django models. The specific problem is how to "perform" the upload, but in a management command.
When the table with the field referenced is migrated to it's corresponding model, I need to also set the image field of the model, and I also need to process the filename accordingly to the upload_to
parameter for the ImageField
.
How to programmatically populate the image field from a file path or a file descriptor?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是创建一个实用程序 django 项目,在 settings.py 中指定旧数据库。然后使用inspectdb管理命令创建旧数据库的django模型表示。最后使用 dumpdata 获取 JSON 格式的数据。
然后,您最终可以制作自己的 JSON 脚本,将旧数据插入新模型中。
One approach would be to create a utility django project specifying your legacy database in settings.py. Then use the inspectdb management command to create a django model representation of your legacy database. And finally use dumpdata to get you data in JSON format.
You could then finally make your own JSON script that inserts your old data in your new models.