我在连接到新Rails应用程序的Postgresql数据库中名为time_entries的表中有一个名为duration的列.它目前被格式化为时间数据,但我希望它是一个整数. (具体来说,我要去一个smallint专栏,因为它的分钟数不会超过一天,即1440分.)
首先,我试过:
change_column :time_entries,:duration,:smallint,limit: 2
但是我收到以下错误:
PG::DatatypeMismatch: ERROR: column "duration" cannot be cast automatically to type smallint HINT: You might need to specify "USING duration::smallint".
然后,在查看this post和this post之后,我尝试了以下迁移:
change_column :time_entries,'integer USING CAST(duration AS integer)' change_column :time_entries,limit: 2
但第一行返回以下错误:
PG::CannotCoerce: ERROR: cannot cast type time without time zone to integer
解决方法
您需要提供一个表达式来使用USING子句进行实际转换:
ALTER TABLE time_entries ALTER duration TYPE int2 USING EXTRACT(EPOCH FROM duration)::int2;
请注意,超出smallint范围的任何值都会引发中止整个事务的异常.
有关:
> Rails Migrations: tried to change the type of column from string to integer
> Get a timestamp from concatenating day and time columns
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。