gpt4 book ai didi

ruby-on-rails - 如何更改 rails 5 上的列类型

转载 作者:行者123 更新时间:2023-12-03 17:52:40 25 4
gpt4 key购买 nike

我在我的 sqlite 中插入了一个错误类型“stringimage”的列。

enter image description here

如何将列类型更改为字符串?

我尝试了 change_column :users, :uid, :string

def up
change_table :users do |t|
t.change :uid, :stringimage
end
end
def down
change_table :users do |t|
t.change :uid, :string
end
end

但它不起作用。我尝试了很多方法,但都没有用,可能是因为我使用的是 Rails 5。

最佳答案

您需要在迁移中写入以下两个定义:

def up
change_column :my_table, :my_column, :string
end

def down
change_column :my_table, :my_column, :stringimage
end

关于ruby-on-rails - 如何更改 rails 5 上的列类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38518691/

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