gpt4 book ai didi

ruby-on-rails - Rails、Postgres - 将列类型从整数更改为字符串

转载 作者:行者123 更新时间:2023-11-29 11:56:49 26 4
gpt4 key购买 nike

我有一个 Rails 3.2 应用程序,它在 user_profiles 表中存储邮政编码。我最初使用整数作为邮政编码的数据类型;但是,这显然是错误的,因为您不能使用以零开头的数字(有些美国邮政编码确实以零开头)。因此,我需要将邮政编码列和我的生产数据转换为字符串。我认为这是通过简单的 change_column 迁移完成的,但我不知道使用 Postgres 时要使用的确切代码。任何帮助将非常感激!我添加邮政编码列的原始迁移如下:

class AddZipCodeToUserProfiles < ActiveRecord::Migration
def change
add_column :user_profiles, :zip_code, :integer
end
end

最佳答案

class ChangeZipCodeToString < ActiveRecord::Migration
def change
change_column :user_profiles, :zip_code, :string
end
end

你试过吗?

关于ruby-on-rails - Rails、Postgres - 将列类型从整数更改为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31930331/

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