在控制台中使用两个应用程序

发布于 2024-11-08 19:12:12 字数 255 浏览 1 评论 0原文

我重建了一个项目。我已经迁移了数据库,现在需要传输文件。我不能只是复制粘贴它们。我需要重新处理它们。

如何在控制台(或 Rake Task)中加载两个 Rails 应用程序并像这样工作:

App1.attaches.all.each do |attach|
  new = App2.attach.new attach.attributes
  new.file = attach.file.url
  new.save
end

I have rebuilt a project. I've migrated databases and now I need to transfer files. I can't just copy paste them. I need to reprocess them.

How can I load two Rails apps in console (or Rake Task) and work like that:

App1.attaches.all.each do |attach|
  new = App2.attach.new attach.attributes
  new.file = attach.file.url
  new.save
end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

南渊 2024-11-15 19:12:12

我会向新应用程序添加一个临时模型。如果您有一个模型 Asset,我会添加

class LegacyAsset < ActiveRecord::Base
    establish_connection (
        # connection credentials for old application
    )
end

然后您可以使用这两个模型来转换数据并在完成后删除 LegacyAsset 模型。

I'd add a temporary model to the new application. If you have a model Asset, I'd add

class LegacyAsset < ActiveRecord::Base
    establish_connection (
        # connection credentials for old application
    )
end

Then you can use both models to convert the data and delete the LegacyAsset model after you're done.

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