gpt4 book ai didi

ruby-on-rails - 事件记录 : Change the values of certain items in the database through terminal

转载 作者:搜寻专家 更新时间:2023-10-30 23:01:53 25 4
gpt4 key购买 nike

假设我创建了这个表:

class CreateTweets < ActiveRecord::Migration
def up
create_table :contents do |t|
t.string :user_id
t.string :content
t.timestamps
end
end
def down
drop_table :contents
end
end

我如何通过终端更改我拥有 ID 的特定内容的 user_id 值并将其保存以用于测试目的。

非常感谢。

最佳答案

将 id 为 1 的内容更新为 user_id 为 5(假设 user_id 是一个整数字段):

运行 rails console,然后 Content.update(1, user_id: 5)

关于ruby-on-rails - 事件记录 : Change the values of certain items in the database through terminal,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31622020/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com