续集迁移在heroku中运行postgres类型错误

时间:2011-01-31 23:30:23

标签: ruby postgresql heroku sequel

出于某些原因,当我在Heroku中运行我的迁移时,续集会尝试创建一行string而不是varchar

PGError: ERROR:  type "string" does not exist (Sequel::DatabaseError)
LINE 1: ...erial PRIMARY KEY, "facebook_id" integer, "email" string(50)

任何人都有修复?

1 个答案:

答案 0 :(得分:1)

好的,改变了我的迁移:

string  :email,                   :null => false, :unique => true

String  :email,                   :null => false, :unique => true