使用图像文件将旧数据库迁移到 Django

发布于 2024-12-17 22:25:58 字数 223 浏览 2 评论 0原文

我有一个旧数据库的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

热风软妹 2024-12-24 22:26:00

一种方法是创建一个实用程序 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文