我是Ruby的新手,需要进行简单的数据库迁移。我有 我的数据库中有一个名为data_sources的表,我需要更新记录 id 3现场系统从Fusion到Fusion,Matrix。
我有红宝石自动创建文件,但后来我迷路了。
class UpdateDataSourcesGlvarSystems < ActiveRecord::Migration
def change
end
end
感谢您的帮助,
凯恩
答案 0 :(得分:0)
如果它只是一项独特的任务,请使用rails console:
$ rails c
fix = MyModel.find 3
fix.data_sources = "Fusion,Matrix"
fix.save